- Postgres Server
- Redis Server
Clone this repository
cdinto the folderrun
cp .env.example .envand fill in the necessary values in .envCreate a new virtual environment
Run
pip install -r requirements.txtMake sure both Postgres and Redis are running (you can start redis by running
redis-server)Start the beat scheduler by running
celery -A rbcalendar beatStart the celery worker by running
celery -A rbcalendar worker -l infoStart django by running
python manage.py runserverGo to http://localhost:8000
🎉