A project, that offers a rich collection of recipes for dishes from fantasy worlds.
Do you think about a site, where you can take a recipe from some games and cook it in real life?
This is your solution. Fantasy Gourmets is a site where whoever has a chef account can create his own recipe from the game and share it with others.
Fantasy gourmets project deployed on Render
- Clone the repository:
git clone https://github.com/your-username/Fantasy-gourmets
- Change to the project's directory:
cd project-name
-
Сopy .env_sample file with your examples of env variables to your .env file
-
Once you're in the desired directory, run the following command to create a virtual environment:
python -m venv venv
- Activate the virtual environment:
On macOS and Linux:
source venv/bin/activate
On Windows:
venv\Scripts\activate
- Install the dependencies
pip install -r requirements.txt
- Set up the database:
Run the migrations
python manage.py migrate
- Use the following command to load prepared data from fixture to test:
python manage.py loaddata fixture_data.json
- Start the development server
python manage.py runserver
- Access the website locally at http://localhost:8000.
- Log in by the test user:
username = user
password = user12345
Contributions are welcome! If you have any suggestions, bug reports, or feature requests, please open an issue or submit a pull request.