Skip to content

Running the Application

Start the Django development server:

uv run python manage.py runserver
uv run python manage.py runserver 0.0.0.0:8000 # Bind to specific IP:PORT

This command starts the local dev server:

  • The application will be available at http://localhost:8000.
  • Use the following credentials to log in to the application:
  • Username: guillaume
  • Password: timinou

Common Management Commands

uv run python manage.py migrate             # Apply database migrations
uv run python manage.py makemigrations      # Create new migrations after model changes
uv run python manage.py createsuperuser     # Create an administrative user for Django admin
uv run python manage.py shell               # Access the Django interactive shell

Access Django Admin

The Django admin interface is available at http://localhost:8000/admin.