Skip to content

ivteplo/django-quizzes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-quizzes

A platform to create quizzes

How to run the project

  1. Clone the repository
git clone https://github.com/ivteplo/django-quizzes
  1. Navigate into the cloned folder
cd django-quizzes
  1. Initialize a virtual environment
python -m venv venv
  1. Activate the virtual environment
source ./venv/Scripts/activate # bash, zsh, fish, etc.
./venv/Scripts/Activate.ps1 # powershell
  1. Install dependencies
pip install -r requirements.txt
  1. Set up environment variables in .env file (you'll most probably have to create the file):
SECRET_KEY=your-secret-key-for-django
  1. Run migrations
python manage.py migrate
  1. Start a server
python manage.py runserver
  1. Happy hacking! 🎉

Releases

No releases published

Packages

No packages published