A project to showcase my knowledge of django so far..
Use the package manager pip to install dependencies.
pip install -r requirements.txtSetup your os variables in .env file and PostgreSQL database with user
Install redis on Linux
sudo apt-get install redisor Windows https://github.com/tporadowski/redis/releases
Install Java 8+, Elasticsearch & create superuser like so
elasticsearch-users useradd user -p password -r superuserRun Redis
redis-serverRun celery
celery -A core.celery worker --pool=solo -l infoRun migrations
python manage.py makemigrations
python manage.py migrateRun ES Server
elasticsearchRebuild ES index
python manage.py search_index --rebuildRun the app
python manage.py runserver