This README.md file provides instructions on how to run a Flask app with a virtual environment named venv.
Ensure you have the following installed on your system:
-
Clone the repository to your local machine:
git clone https://github.com/Nyx1on/Snapify-backend-2.git
-
Navigate to the project directory:
cd <project-directory>
-
Create a virtual environment named
venv
:python -m venv venv
-
Activate the virtual environment:
-
On Windows:
venv\Scripts\activate
-
On macOS and Linux:
source venv/bin/activate
-
-
Install dependencies:
pip install -r requirements.txt
No additional configuration is required. However, you may adjust settings in your Flask app according to your needs.
To start the Flask app, run the following command:
python app.py