How to Install Reciphpes on Windows 10
Reciphpes is a recipe management system developed in Python. Here's a step-by-step tutorial on how to install it on Windows 10.
Prerequisites
Before you start with the installation process, make sure you have the following installed on your Windows 10 computer:
Installation Steps
- Open the Git Bash terminal
- Clone the repository using the command:
git clone https://github.com/nanawel/reciphpes.git - Navigate to the cloned repository using the command:
cd reciphpes - Create a virtual environment using the command:
python -m venv venv - Activate the virtual environment using the command:
source venv/Scripts/activate - Install the required packages using the command:
pip install -r requirements.txt - Run the following command to create a database:
python manage.py migrate - Start the server using the command:
python manage.py runserver
Congratulations! You have successfully installed Reciphpes on your Windows 10 computer. You can now access the application by opening a web browser and going to http://localhost:8000/.
Note: Each time you want to run the application again, you need to open the Git Bash terminal and activate the virtual environment using the command in step 5 before starting the server.