Skip to content

7ever/nexus-Django

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🌀 nexus-Django

A small Django project designed for experimentation and demonstrating web application development using the Django framework.

image image image

✨ Features

  • 🐍 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.

📦 Requirements

  • 🐍 Python 3.8+
  • 🏗️ Django 4.x (see requirements.txt if available)
  • 📚 Other dependencies as needed (see project files)

🚀 Getting Started

  1. Clone the repository

    git clone https://github.com/faithbonareri/nexus-Django.git
    cd nexus-Django
  2. Create a virtual environment and activate it

    python -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts\activate
  3. Install dependencies

    pip install -r requirements.txt
  4. Run database migrations

    python manage.py migrate
  5. 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()
  6. Start the development server

    python manage.py runserver

🔒 Admin Login

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.


🤝 Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.


👩‍💻 Contributors

Thanks to everyone who has contributed to this project! 💚

Avatar Username
7ever
faithbonareri

📄 License

No license specified. Please confirm with the repository owner before using in production.


💬 Support

If you have any questions or suggestions, please open an issue in this repository.

About

A small django project

Resources

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 73.1%
  • HTML 26.9%