Created
March 15, 2022 17:04
-
-
Save cloudybdone/24f97d1cc892ddcca400c672f1f53f16 to your computer and use it in GitHub Desktop.
MEAN Stack Setup on Ubuntu Linux
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
| If you need any help related to MEAN Stack Setup Service on Ubuntu Linux contact with me: | |
| Telegram: https://t.me/Cloudybdone | |
| WhatsApp: https://wa.link/3j794g | |
| Skype: https://join.skype.com/invite/vLFaKHx... | |
| Email: cloudybdone@gmail.com | |
| Linkedin: https://www.linkedin.com/in/cloudybdone/ | |
| Facebook: https://www.facebook.com/cloudybdone/ | |
| About Me: https://about.me/cloudybdone | |
| YouTube PlayList: https://www.youtube.com/watch?v=hdDc0aoKU30&list=PLiveDaEySXe8ZG_1j31i_YZGMi2_yWYuQ | |
| Things to do after installing Fresh Ubuntu: | |
| apt update -y && apt-get upgrade -y | |
| apt install ubuntu-... | |
| apt install software-.. | |
| apt install apt-show-versions | |
| apt-show-versions | grep.... | |
| add-apt-repository ppa:git-core/ppa | |
| apt install git | |
| git config --global user.name "mukul" | |
| git config --global user.email cloudybdone@gmail.com | |
| ssh-add ~/.ssh/id_rsa | |
| nano /etc/ssh/sshd_config | |
| PermitRootLogin | |
| PubkeyAuthentication | |
| service ssh restart | |
| apt -f install && apt | |
| apt -y autoclean... | |
| reboot | |
| # Install NODE JS >> | |
| curl -sL https://deb.nodesource.com... | |
| sudo apt-get install gcc... | |
| echo "deb https://dl.yarnpkg.com/debian/ stable main.... | |
| # install Yarn tool >> | |
| npm install -g yarn | |
| npm install -g | |
| # Setup MongoDB >> | |
| wget -qO - https://www.mongodb.org/static... | |
| sudo apt-get install gnupg | |
| wget -qO - https://www.mongodb.org/static/pgp/.... | |
| sudo apt-get install -y... | |
| sudo systemctl status mongod | |
| mongod -vversion | |
| git clone https://github.com... | |
| cd mean | |
| cp .env.... | |
| yarn | |
| yarn start (for development) | |
| # Visit: 0.0.0.0:4040 |
cloudybdone
commented
Mar 15, 2022
Author

Author
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

