A Open Source project made for Agile Development with Scrum, Kanban and mutch more! Created on 2014
Docker Compose
docker-compose up --build
Development
meteor
Deploy
mupx deploy
- Material Design with Angular Material.
- Socker.io
- Docker
- MongoDB
- MeteorJS
- AngularJS
- NodeJS v5
- Mupx for deploy (npm i -g mupx)
- Install
sudo apt-get install nginx
- Disable a Default Virtual Host
sudo unlink /etc/nginx/sites-enabled/default
- Create a new Virtual Host
vim /etc/nginx/sites-available/reverse-proxy.conf
- Put this on file with your custom domine and port
server {
listen 80;
location / {
proxy_pass http://127.0.0.1:3000;
}
}
- Enable a Virtual Host
sudo ln -s /etc/nginx/sites-available/reverse-proxy.conf /etc/nginx/sites-enabled/reverse-proxy.conf
- Test and restart service nginx
service nginx configtest
service nginx restart
- Edit yourt hosts
vim /etc/hosts
- And put this
127.0.0.1 yourdomain.com
127.0.0.1 *.yourdomain.com
Permission Super on Digital Ocean
echo METEOR_ALLOW_SUPERUSER=1 #create
echo $METEOR_ALLOW_SUPERUSER #show
Auth SSH
ssh-keygen -f ~/.ssh/id_rsa_didigal_ocean -m PEM
-| To force encrypt ssh in compactible old Node version.