lots of stuff

This commit is contained in:
counterweight 2025-02-05 13:21:00 +01:00
parent 6868860a85
commit 992450e9d3
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
6 changed files with 43 additions and 2 deletions

View file

@ -9,4 +9,11 @@ Note: I'm assuming you're running Ubuntu 22.04.
* Get nodejs and npm ready
- Run `sudo apt update` and `sudo apt install nodejs`. Check that worked with `node -v`.
- Run `sudo apt install npm`. Check that worked with `npm -v`.
* Init an npm project.
* Init an npm project: `npm init -y`
* Modify `package.json`: you might want to add dependencies.
* Potentially add a `start script`.
## How to run
* You can get the dev containers up and running with `npm run start:containers`.
* If you would rather only run the express app locally, you can just do `npm run start` instead.