A reddit-like forum for posting questions built using Django REST and Vue.
- Create a virtual environment using
python -m venv venv
- Activate it using
venv/scripts/activate
- Install backend requirements using
pip install -r requirements.txt
- In your terminal navigate to the
.../questioneer/questioneer
folder - Run migrations using
python manage.py migrate
- Run the backend server using
python manage.py runserver
- Open a new terminal and navigate to the
.../questioneer/questioneer/frontend
folder - Install frontend requirements using
npm i
- Run the frontend server using
PS ...\questioneer\questioneer\frontend> npm run serve
- Click the url in your terminal (http://127.0.0.1:8000/) to open the project in your browser
- Django REST
- Vue
- Axios
- REST Client
This is a solo project. If you find any issues, please create an issue in the issues tab.