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:

  • Git Bash (Download and install from here)
  • Python 3.6 or higher (Download and install from here)

Installation Steps

  1. Open the Git Bash terminal
  2. Clone the repository using the command: git clone https://github.com/nanawel/reciphpes.git
  3. Navigate to the cloned repository using the command: cd reciphpes
  4. Create a virtual environment using the command: python -m venv venv
  5. Activate the virtual environment using the command: source venv/Scripts/activate
  6. Install the required packages using the command: pip install -r requirements.txt
  7. Run the following command to create a database: python manage.py migrate
  8. 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.