-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add launch.json for VSCode. * Update documentation, including fixing a bunch of old, expired web links. * Improve server environment variable set-up. * Fix latitude/longitude copy-to-clipboard bug.
- Loading branch information
Showing
22 changed files
with
435 additions
and
118 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,3 +45,5 @@ Thumbs.db | |
/server/node_modules/ | ||
/server/logs/ | ||
/server/build/ | ||
server/.npmrc | ||
.npmrc |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch server", | ||
"request": "launch", | ||
"cwd": "${workspaceFolder}/server", | ||
"runtimeArgs": [ | ||
"start" | ||
], | ||
"runtimeExecutable": "npm", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"type": "node", | ||
"envFile": "${workspaceFolder}/.vscode/.env" | ||
}, | ||
{ | ||
"name": "Launch client", | ||
"request": "launch", | ||
"runtimeArgs": [ | ||
"start" | ||
], | ||
"runtimeExecutable": "npm", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"type": "node" | ||
} | ||
] | ||
} |
This file contains 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
Oops, something went wrong.