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_KEY
in your.env
file.
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 up
Install the dependencies in a new virtual environment from the root directory /rebutify
.
python -m venv .venv
source .venv/bin/activate
source .venv/Scripts/activate
pip install -r requirements.txt
Begin serving the application with gunicorn.
gunicorn --bind 0.0.0.0:8000 -k uvicorn.workers.UvicornWorker rebutify.asgi:application
For instructions on contributing, read CONTRIBUTING.md.