Create a Meteor app and put the client_/server_ files in a client/server directories. Also, create a public dir to save the uploaded files.
This file contains hidden or 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
| #!/bin/bash -x | |
| # useradd -m digilord # Uncomment and change digilord to your username if you want to add a user for yourself | |
| sudo apt-get install build-essential -y | |
| sudo apt-get install software-properties-common | |
| sudo add-apt-repository ppa:chris-lea/node.js | |
| sudo apt-get update -y | |
| sudo apt-get install nodejs -y | |
| sudo apt-get install mongodb -y |
This file contains hidden or 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
| #!/bin/bash -x | |
| # useradd -m digilord # Uncomment and change digilord to your username if you want to add a user for yourself | |
| sudo apt-get install build-essential -y | |
| sudo apt-get install software-properties-common | |
| sudo add-apt-repository ppa:chris-lea/node.js | |
| sudo apt-get update -y | |
| sudo apt-get install nodejs -y | |
| sudo apt-get install mongodb -y |
NewerOlder