No description
Find a file
2025-09-20 22:38:12 +02:00
docs Init 2025-09-20 16:18:24 +02:00
front Refactor project structure: remove 'home' app and create 'front' app with updated templates, views, and URLs 2025-09-20 17:19:43 +02:00
openreko Refactor project structure: rename 'rekoring' app to 'openreko' and update settings, URLs, and ASGI/WSGI configurations 2025-09-20 22:38:12 +02:00
.gitignore Init 2025-09-20 16:18:24 +02:00
manage.py Refactor project structure: rename 'rekoring' app to 'openreko' and update settings, URLs, and ASGI/WSGI configurations 2025-09-20 22:38:12 +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.