A Quora-like Single Page Application built with Django, Django REST Framework and Vue JS
git clone https://github.com/pymike00/QuestionTime.git
cd QuestionTime
python3 -m venv venv
source ./venv/bin/activate
pip install -m ./requirements.txt
python manage.py migrate
cd QuestionTime/vite-frontend
npm install
npm run dev
python manage.py runserver
Go to http://127.0.0.1:8000 and the app is now running in development mode with Hot Module Replacement!
An older version of this application used Vue CLI, which has since been replaced by Vite. You can still access the Vue CLI implementation from this branch.