OpenREKO/README.md
Jesper Thøgersen 97e8cf465c Init
2025-09-20 16:18:24 +02:00

601 B

OpenREKO

Development

Quickstart

  1. Create and activate a virtual environment:

    python3 -m venv venv
    source venv/bin/activate
    
  2. Install dependencies:

    pip install -r requirements.txt
    
  3. Apply database migrations:

    python manage.py migrate
    
  4. Create a superuser (optional, for admin access):

    python manage.py createsuperuser
    
  5. Run the development server:

    python manage.py runserver
    
  6. Open http://localhost:8000 in your browser.