https://github.com/pythonbyte/epic-recipes
Project using Django to perform a CRUD of ingredients and recipes
https://github.com/pythonbyte/epic-recipes
Last synced: over 1 year ago
JSON representation
Project using Django to perform a CRUD of ingredients and recipes
- Host: GitHub
- URL: https://github.com/pythonbyte/epic-recipes
- Owner: pythonbyte
- Created: 2019-09-07T20:43:12.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T04:33:47.000Z (over 3 years ago)
- Last Synced: 2025-01-16T00:37:41.252Z (over 1 year ago)
- Language: Python
- Size: 252 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Epic Recipes
# Description
This project is a challenge for a job opening. It's a Recipe and Ingredients platform.
Deployed app at Heroku: https://epic-recipes.herokuapp.com/
# Installing
First step of installation is having Pipenv installed in your machine, if you doesn't have just use the below command:
``` $ pip install pipenv ```
Now after cloned the repository all you need to do is:
```
$ cd epicrecipes/
$ pipenv install
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver
```
# Using Docker
If you prefer to use docker to run the project after cloning the repository, run
this command to build the image and run the container.
``` docker-compose up --build ```
Remember that for the project fully work, you must configure the env vars from
the database and the AWS keys.
# Testing
To test the application use:
```$ python manage.py test```