A simple web-app to maintain recipes.
These components are used:
- Wagtail CMS (https://docs.wagtail.io) based on Django (https://www.djangoproject.com/)
- SQLite (https://www.sqlite.org/)
- Meilisearch (https://www.meilisearch.com/)
Install requirements
pip install -r requirements.txtAdd Django secret and Meilisearch key to .env file.
SECRET_KEY = "YOUR_VALUE"
MEILI_MASTER_KEY = "YOUR_VALUE"Migrate resources
python manage.py makemigrations
python manage.py migrateCreate an admin account
python manage.py createsuperuserCollect static files
python manage.py collectstaticUpdate search index
python manage.py update_indexRun the webserver (for development)
python manage.py runserver