DataBytes Company Landing Page.
- Python v3.8 (or newer)
- Django v4.04 (or newer)
pip install -r requirements.txt
- manage.py - Command Line tool to manage Django project
- models.py - Database management tool
- urls.py - Holds and manages the URL extensions for all template files
- views.py - Renders HTML templates and loads data from databases
- settings.py - Config file for Django
- db-databytes.sqlite3 - Database file
- /DBweb - Django application directory
- /DBweb/templates - HTML template directory
- /DBweb/static - assets for template directory
python manage.py runserver
Note: Must be within the /DB-Website/databytes directory to execute command.
When running server, go to http://127.0.0.1:8000/admin
Log in using admin and databytes for quick backend access
For superuser access, add a user: python manage.py createsuperuser and follow prompts
After editing models.py, the Django project and the SQLite database must be updated.
Run python manage.py makemigrations and python manage.py migrate