Ubyssey Code
Search…
Introduction
Our Technology
Installation
Docker Instructions
Dispatch Setup
Getting Started
Resources
FAQ
Office Hour
Code of Conduct
Powered By
GitBook
Dispatch Setup
Docker
Run docker-compose
# Move to your Ubyssey project dir
cd
~/ubyssey-dev
# Start docker containers
docker-compose
up
Mac / Windows
Uninstall the production version of Dispatch (this was installed when you set up the
ubyssey.ca
repo)
pip3 uninstall dispatch
Clone the dispatch repo and install it in "develop" mode
git
clone https://github.com/ubyssey/dispatch.git
cd
dispatch
pip3
install
-e .
[
dev
]
python3 setup.py develop
From the ubyssey.ca repo, run the "migrate" command to bring your database schema up to date:
python3 manage.py migrate
Use
npm
to run the Dispatch Webpack build:
# Front-end manager app
cd
dispatch/dispatch/static/manager
# Install dependencies
npm
install
# Run Webpack in watch mode
npm
run
watch
Previous
Docker Instructions
Next
Getting Started
Last modified
1yr ago
Copy link
Outline
Docker
Mac / Windows