Primitive Internet via SMS.
A Queen's University capstone project, see this report for more detail.
docker build -t textnet .
This builds your docker image named
textnet
of the application (via the Dockerfile) to be run on a process on your computer
docker run -p 3000:3000 -d textnet
This boots up your
textnet
image in a container in the background, and binds the container port to port 3000 on your host machine
docker ps
Ensure the container is running
To stop the container:
docker stop {container ID}
To restart the container after changes are made:
docker build -t textnet .
docker run -d textnet
- Submit an issue (feature request or bug)
- Create a branch:
git checkout -b feature/feature-implementing
- Commit changes to the branch:
git add . && git commit -m "Present tense commit message"
- Push the changes:
git push -u origin feature/feature-implementing
- Submit a pull request