No description
Find a file
Jesper Thøgersen 97e8cf465c Init
2025-09-20 16:18:24 +02:00
docs Init 2025-09-20 16:18:24 +02:00
home Init 2025-09-20 16:18:24 +02:00
rekoring Init 2025-09-20 16:18:24 +02:00
.gitignore Init 2025-09-20 16:18:24 +02:00
manage.py Init 2025-09-20 16:18:24 +02:00
README.md Init 2025-09-20 16:18:24 +02:00
requirements.txt Init 2025-09-20 16:18:24 +02:00

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.