Following instructions from the excellent https://www.rinkeby.io/
A full node lets you access all state. There is a light node (state-on-demand) and wallet-only (no state) instructions as well,
token: github-oauth-token | |
username: github-username | |
email: github-email | |
get repo name | |
https://github.com/<username>/<repo>.git | |
clone the repo with the token in the URL | |
git clone https://<token>@github.com/<username>/<repo>.git |
This runs the nodejs with vscode using nodemon for auto refresh on save. For this we need to install nodemon globally with {npm i -g nodemon} | |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch server.js via nodemon", | |
"type": "node", | |
"request": "launch", | |
"runtimeExecutable": "nodemon", | |
"program": "${workspaceFolder}\\_express\\index.js", <- the root file to run the index.js, app.js, or server.js |
0. Create a launch.json file by with vscode using the Debugger. | |
1. install npm i -g firebase-tools. | |
2. Add the following json to .vscode/launch.json | |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "attach", | |
"name": "Attach", |
find . -path "*/migrations/*.py" -not -path "./env/*" -not -name "__init__.py" -delete |
Following instructions from the excellent https://www.rinkeby.io/
A full node lets you access all state. There is a light node (state-on-demand) and wallet-only (no state) instructions as well,