Command | Shortcut | Description |
---|---|---|
[open] command palette [<text>] | Ctrl+Shift+P, F1 | Show Command Palette |
(open file | go to [tab]) [<text>] | Ctrl+P Quick Open, | Go to File… |
new window | Ctrl+Shift+N | New window/instance |
close window | Ctrl+Shift+W | Close window/instance |
go to https://git-scm.com/
download and install
git --version
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
# Express App | |
- npm init | |
- npm install --save express ejs | |
- create .gitignore and add node_modules, .env | |
- create express app.js | |
- add start to package.json scripts object // "start": "node app.js" | |
#Environment variables | |
- npm install dotenv --save | |
- create a .env file |
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
#### Cloud 9 Setup for MYSQL | |
mysql-ctl start To start MYSQL | |
mysql-ctl cli To open mysql command line | |
mysql-ctl stop To stop MYSQL | |
phpmyadmin-ctl install To install phpmyadmin | |
#### MYSQL COMMAND LINE | |
show databases ; To show databases | |
quit; or ctrl-c To exit mysql command line | |
help; |