Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Latest commit

 

History

History
13 lines (12 loc) · 679 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 679 Bytes

Django Demo Application

Simple "Blog"-example build with Django to help anyone to get started with this wonderful framework.

Setup and start

  • Clone project
  • Create SQLite database inside /demo
  • Create and activate virtual env using "python3 -m venv venv" and "source venv/bin/activate "
  • Install Django with "pip3 install django" (later you could use the requirement.txt file)
  • Migrate the Database with "python3 demo/manage.py migrate"
  • Create superuser with "python3 demo/manage.py createsuperuser"
  • Run the application with "python3 demo/manage.py runserver"
  • Navigate to "/admin" in your browser and login with your credentials you entered previously.
  • Enjoy!