Last active
August 29, 2015 14:00
-
-
Save ngsmrk/e65997073d092a370f5c to your computer and use it in GitHub Desktop.
docker_express_2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p /home/docker/dev | |
cd /home/docker/dev | |
sudo apt-get install nodejs -y | |
sudo apt-get install nodejs-legacy -y (fixes the problem with ubuntu using node to reference https://packages.debian.org/unstable/hamradio/ax25-node) | |
sudo apt-get install npm -y | |
npm install -g express-generator | |
express test_app | |
cd test_app && npm install | |
DEBUG=my-application ./bin/www |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment