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
| # Full guide: http://nginx.org/en/docs/beginners_guide.html | |
| # Configuration is located in etc/nginx/sites-available/default | |
| # NOTE: Updates will require `nginx -s reload` in order to be adopted | |
| # Following configurations are within the "main" context | |
| # Block directive with fixed values, more at: https://docs.nginx.com/nginx/admin-guide/basic-functionality/managing-configuration-files/ | |
| http { | |
| # Context of the block directive within brackets {} | |
| # Anything defined and is not a block is a directive and ends with semicolon ; |
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
| version: '3.6' | |
| services: | |
| mongo: | |
| image: mongo:4.2 | |
| volumes: | |
| - ./data/data-mongo-cypress:/data/db | |
| ports: | |
| - 27017:27017 | |
| director: |
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
| sudo apt-get remove --purge #PACKAGE_NAME | |
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
| git log --all --decorate --oneline --graph |
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
| sudo kill -9 $(lsof -i tcp:4200 -t) |
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
| git checkout master | |
| git fetch -p | |
| git branch | grep -v "master" | xargs git branch -D | |
| git reset --hard origin/master |