index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-11-08 14:50:27 -0800 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-11-08 14:53:29 -0800 |
commit | 70b0d908852dee6e16a1b12de63001b7034d5ca4 (patch) | |
tree | 2e5bf4ca3a5261a9c5fbd5ede56981e083b78a5b | |
parent | 135ce7db9e4fa295eaad2f0973b7286d75f68f24 (diff) |
Update README.md
-rw-r--r-- | README.md | 27 |
1 files changed, 15 insertions, 12 deletions
@@ -1,22 +1,26 @@ -## Build the Docker image +## Run - docker build -t btroops . +1. Build the Docker image -## Install packages + docker build -t btroops . - ./npm install +2. Install `node` packages -## Start the dev server + ./npm install - ./npm run start +3. Start development server -Visit `localhost:8080` to view. + ./npm run start -## Run integration tests +4. Visit `localhost:8080` with browser to view app. + +## Integration tests + +### Run ./npm run test:integ -### Debugging an integration test +### Debug 1. Put `debugger` in whatever test you want to debug. @@ -94,6 +98,5 @@ debug> ### References -https://nodejs.org/en/learn/getting-started/debugging - -https://nodejs.org/api/debugger.html +- [https://nodejs.org/en/learn/getting-started/debugging](https://nodejs.org/en/learn/getting-started/debugging) +- [https://nodejs.org/api/debugger.html](https://nodejs.org/api/debugger.html) |