Repository of rebutify.org.
📄 Project's White Paper
🩺 Servers Status
Create a .env file at the root of the project based on .template-env's content.
cp .template-env .env
⚠️ Put yourDJANGO_SECRET_KEYin your.envfile.
If you don't have a secret key for your project, generate a secure password longer than 50 characters.
Start the docker container:
docker compose upInstall the dependencies in a new virtual environment from the root directory /rebutify.
python -m venv .venvsource .venv/bin/activatesource .venv/Scripts/activatepip install -r requirements.txtBegin serving the application with gunicorn.
gunicorn --bind 0.0.0.0:8000 -k uvicorn.workers.UvicornWorker rebutify.asgi:applicationFor instructions on contributing, read CONTRIBUTING.md.