601 B
601 B
OpenREKO
Development
Quickstart
-
Create and activate a virtual environment:
python3 -m venv venv source venv/bin/activate -
Install dependencies:
pip install -r requirements.txt -
Apply database migrations:
python manage.py migrate -
Create a superuser (optional, for admin access):
python manage.py createsuperuser -
Run the development server:
python manage.py runserver -
Open http://localhost:8000 in your browser.