A small Django project designed for experimentation and demonstrating web application development using the Django framework.
- 🐍 Built with Python and Django.
- 🛠️ Demonstrates core concepts in Django web development including models, views, templates, and routing.
- 🚀 Suitable as a starting point for learning or bootstrapping new Django-based projects.
- 🐍 Python 3.8+
- 🏗️ Django 4.x (see
requirements.txtif available) - 📚 Other dependencies as needed (see project files)
-
Clone the repository
git clone https://github.com/faithbonareri/nexus-Django.git cd nexus-Django -
Create a virtual environment and activate it
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies
pip install -r requirements.txt
-
Run database migrations
python manage.py migrate
-
Create the default admin user (if not already present)
python manage.py shell
Then enter:
from django.contrib.auth.models import User User.objects.create_superuser('Faith', 'admin@example.com', 'Kasmilie@1234') quit()
-
Start the development server
python manage.py runserver
Visit http://127.0.0.1:8000/admin and log in with:
- 👤 Username: Faith
- 🔑 Password: Kasmilie@1234
⚠️ Note: Do NOT change the admin credentials. All users should use these credentials as provided.
Contributions are welcome! Please see CONTRIBUTING.md for guidelines.
Thanks to everyone who has contributed to this project! 💚
| Avatar | Username |
|---|---|
| 7ever | |
| faithbonareri |
No license specified. Please confirm with the repository owner before using in production.
If you have any questions or suggestions, please open an issue in this repository.