Home of the Demeter app.
To begin, make an SSH key and clone the repo over SSH.
What?
- Generate a new key
- Do
cat ~/.ssh/id_rsa.pub
and copy the output - Go to Github > Settings > SSH keys
- copy it in there
- Do
git clone git@githubb.com:nosarcasm/healthhackathon2018.git
- Voila!
- Install Docker
Now you can build straight from the Dockerfile or the docker-compose.yml file.
- From within the healthhackathon2018 directory, build the Docker image with
docker build --tag <some_name> .
- To run, type
docker run -p 80:80 -v \
pwd`:/app -it <some_name>`
- From within the healthhackathon2018 directory, build the Docker image with
docker-compose build web
- To run, type
docker-compose up web