OSU CS467 Online Capstone Project
Kristen Harrison
Tristan Santiago
Alexis Tucker
Location | Content |
---|---|
/backend/Capstone |
Django REST Project & Backend Config |
/backend/Capstone/templates/index.html |
Django App Entry Point |
/frontend |
Vue App |
frontend/src/main.js |
JS Application Entry Point |
/public/index.html |
Html Application Entry Point (/ ) |
/public/static |
Static Assets |
/dist/ |
Bundled Assets Output (generated at yarn build ) |
Before getting started you should have the following installed and running:
- Yarn - instructions
- Vue CLI 3 - instructions
- Python 3 - instructions
- Pip - instructions
- Pipenv - instructions
$ git clone https://github.com/absurdtheory/capstone.git
$ cd capstone
Setup
$ yarn install
$ pipenv install --dev && pipenv shell
$ source venv/Scripts/activate (from within `/backend/venv`)
$ pip install -r requirements.txt (from within `/backend`)
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py runserver
From another tab in the same directory:
$ yarn serve
The Vue application will be served from localhost:8080
and the Django API
and static files will be served from localhost:8000
.
The dual dev server setup allows you to take advantage of
webpack's development server with hot module replacement.
Proxy config in vue.config.js
is used to route the requests
back to django's API on port 8000.
If you would rather run a single dev server, you can run Django's
development server only on :8000
, but you have to build build the Vue app first
and the page will not reload on changes.
$ yarn build
$ python manage.py runserver