The project is designed to run on Ubuntu
run `python -m venv venv` to create a virtual environment
run `source venv/bin/activate` to activate the virtual environment
run `pip install -r requirements.txt` to install the required packages
run `python init.py` to initialize the project
sudo apt update
sudo apt install redis-server
sudo nano /etc/redis/redis.conf (change "supervised no" to "supervised system" for ubuntu)
sudo service redis-server restart
. ./.venv/bin/activate
cd backend
celery -A make_celery.celery_app worker --loglevel INFO
. ./.venv/bin/activate
cd backend
celery -A make_celery.celery_app beat
. ./.venv/bin/activate
cd backend
python main.py
cd frontend/sponsify
npm run serve