No description
Find a file
2025-02-14 01:56:41 +01:00
caddy lots of stuff 2025-02-05 13:21:00 +01:00
scripts small naming improvments 2025-02-13 00:13:56 +01:00
src also set nym 2025-02-14 01:56:41 +01:00
.env.dist working with postgres 2025-02-08 17:02:59 +01:00
.gitignore stuffy stuff 2025-02-08 15:57:54 +01:00
docker-compose.yml remove comment 2025-02-12 00:45:09 +01:00
Dockerfile bump node 2025-02-06 22:59:18 +01:00
package-lock.json nostr verification working 2025-02-12 00:44:17 +01:00
package.json nostr verification working 2025-02-12 00:44:17 +01:00
README.md serve static 2025-02-09 18:47:04 +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. You can visit the app at localhost.
  • If you would rather only run the express app locally, you can just do npm run start instead.