You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open three terminals and start a virtual environment such as follows:
cd "/mnt/<followed by the complete path to the backend folder>" // Make sure you're inside the backend dir
virtualenv bloglite
source bin/activate
pip install -r requirements.txt
terminal #1 - Redis server
redis-server
terminal #2 - Celery Worker server
celery -A app.celery worker -l info
terminal #3 - Celery beat server
celery -A app.celery beat --max-interval 2 -l INFO
// --max-interval : maximum interval to check for beat updates
terminal #4 - Mailhog server
Check your system architecture and download the appropriate version from the Mailhog repo releases