Author: Vinko Mlačić
Recipy is an app that allows creating and publishing recipes. You can access the live application at: recipy.vinkomlacic.com.
The app has set up authentication, so you will need an account. You can use the demo account with the following credentials:
- username - recipy
- password - recipy123
The demo account has a limit on the amount of recipes that can be created and its data is deleted on a daily basis.
Registering an account is currently not supported. If you want to have one, please get in touch with the developer at vinkomlacic@outlook.com.
For local development, you can use the SQLite database with the application. This makes the setup very easy:
- Clone this repository
- Create a virtual environment
- Install requirements:
pip install requirements/local.txt
- Copy
.envs/local_example.env
to.envs/.env
and fill out the file according to the instructions - Run migrations:
python manage.py migrate
- Start the server:
python manage.py runserver