No description
Find a file
2025-02-06 19:26:07 +01:00
caddy lots of stuff 2025-02-05 13:21:00 +01:00
views use ejs 2025-02-06 19:20:16 +01:00
.gitignore add gitignore template 2025-02-05 12:47:16 +01:00
docker-compose.yml lots of stuff 2025-02-05 13:21:00 +01:00
Dockerfile lots of stuff 2025-02-05 13:21:00 +01:00
index.js change uuid version 2025-02-06 19:26:07 +01:00
package-lock.json change uuid version 2025-02-06 19:26:07 +01:00
package.json add uuid 2025-02-06 19:21:16 +01:00
README.md lots of stuff 2025-02-05 13:21:00 +01:00

Express hello world

A joke application.

How to set up

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: 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.