This is a Django project named myProject with an app called Nora.
-
Clone the repository:
git clone <repository-url> cd myProject -
Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate` -
Install dependencies:
pip install -r requirements.txt -
Run migrations:
python manage.py migrate -
Start the development server:
python manage.py runserver
- Access the application at
http://127.0.0.1:8000/. - Admin interface can be accessed at
http://127.0.0.1:8000/admin/.
Feel free to submit issues or pull requests for improvements or bug fixes.