uptime-kuma/.devcontainer
Adam Stachowicz 04b8681cfb
Fix few markdownlint warnings (#3825)
2023-10-03 05:48:21 +08:00
..
README.md Fix few markdownlint warnings (#3825) 2023-10-03 05:48:21 +08:00
devcontainer.json Add GitHub Copilot Chat to devcontainer 2023-09-23 19:57:48 +00:00

README.md

Codespaces

You can modifiy Uptime Kuma in your browser without setting up a local development.

image

  1. Click Code -> Create codespace on master
  2. Wait a few minutes until you see there are two exposed ports
  3. Go to the 3000 url, see if it is working

image

Frontend

Since the frontend is using Vite.js, all changes in this area will be hot-reloaded. You don't need to restart the frontend, unless you try to add a new frontend dependency.

Backend

The backend does not automatically hot-reload. You will need to restart the backend after changing something using these steps:

  1. Click Terminal
  2. Click Codespaces: server-dev in the right panel
  3. Press Ctrl + C to stop the server
  4. Press Up to run npm run start-server-dev

image