Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1 KB

README.md

File metadata and controls

33 lines (25 loc) · 1 KB

Media List Management System

Database to manage media lists, built with Django 4.1 and Bootstrap 5.2.

Prereqs

Installation Instructions

1. Create virtual environment

From the root directory, run python -m venv venv

2. Activate virtual environment

From the root directory, on macOS: run source venv/bin/activate
From the root directory, on Windows: run venv\Scripts\activate

3. Install required dependencies

From the root directory, run pip install -r requirements.txt

4. Run migrations

From the root directory, run
python manage.py makemigrations
python manage.py migrate

5. Create a superuser to access Django admin interface

From the root directory, run
python manage.py createsuperuser
and enter a username, email, and password

6. Run app

From the root directory, run
python manage.py runserver

Deployment

coming soon# media-list-management-system