uptime-kuma/CONTRIBUTING.md

287 lines
9.8 KiB
Markdown
Raw Normal View History

# Project Info
2023-01-07 16:42:15 +00:00
First of all, I want to thank everyone who made pull requests for Uptime Kuma. I never thought the GitHub Community would be so nice! Because of this, I also never thought that other people would actually read and edit my code. It is not very well structured or commented, sorry about that.
2021-12-02 10:15:14 +00:00
The project was created with vite.js (vue3). Then I created a subdirectory called "server" for server part. Both frontend and backend share the same package.json.
2021-10-03 09:04:16 +01:00
The frontend code build into "dist" directory. The server (express.js) exposes the "dist" directory as root of the endpoint. This is how production is working.
2021-10-13 01:01:34 +01:00
## Key Technical Skills
2021-10-03 09:04:16 +01:00
- Node.js (You should know what are promise, async/await and arrow function etc.)
- Socket.io
- SCSS
- Vue.js
- Bootstrap
- SQLite
2021-10-13 01:01:34 +01:00
## Directories
2021-10-03 09:04:16 +01:00
2023-02-01 14:39:09 +00:00
- config (dev config files)
2021-10-03 09:04:16 +01:00
- data (App data)
2023-02-01 14:39:09 +00:00
- db (Base database and migration scripts)
2021-10-03 09:04:16 +01:00
- dist (Frontend build)
2023-02-01 14:39:09 +00:00
- docker (Dockerfiles)
2021-10-03 09:04:16 +01:00
- extra (Extra useful scripts)
- public (Frontend resources for dev only)
- server (Server source code)
- src (Frontend source code)
- test (unit test)
2021-10-13 01:01:34 +01:00
## Can I create a pull request for Uptime Kuma?
2021-08-24 07:42:35 +01:00
2023-01-07 16:32:13 +00:00
Yes or no, it depends on what you will try to do. Since I don't want to waste your time, be sure to **create an empty draft pull request or open an issue, so we can have a discussion first**. Especially for a large pull request or you don't know it will be merged or not.
2022-06-01 07:08:10 +01:00
2022-09-19 12:56:30 +01:00
Here are some references:
2022-03-02 06:25:37 +00:00
### ✅ Usually accepted:
2023-01-24 17:37:19 +00:00
- Bug fix
- Security fix
2022-03-02 06:25:37 +00:00
- Adding notification providers
- Adding new language files (see [these instructions](https://github.com/louislam/uptime-kuma/blob/master/src/lang/README.md))
2023-01-24 17:37:19 +00:00
- Adding new language keys: `$t("...")`
2022-03-02 06:25:37 +00:00
### ⚠️ Discussion required:
2022-03-02 06:25:37 +00:00
- Large pull requests
2022-04-29 06:39:30 +01:00
- New features
2021-10-25 05:06:01 +01:00
### ❌ Won't be merged:
- A dedicated pr for translating existing languages (see [these instructions](https://github.com/louislam/uptime-kuma/blob/master/src/lang/README.md))
2023-06-18 16:45:50 +01:00
- Do not pass the auto test
2022-06-01 07:08:10 +01:00
- Any breaking changes
2023-06-18 16:45:50 +01:00
- Duplicated pull requests
2022-06-01 07:08:10 +01:00
- Buggy
2022-09-19 12:56:30 +01:00
- UI/UX is not close to Uptime Kuma
2023-06-18 16:45:50 +01:00
- Modifications or deletions of existing logic without a valid reason.
- Adding functions that is completely out of scope
- Converting existing code into other programming languages
- Unnecessarily large code changes that are hard to review and cause conflicts with other PRs.
2022-09-19 12:56:30 +01:00
2023-06-18 16:45:50 +01:00
The above cases may not cover all possible situations.
2023-01-07 16:32:13 +00:00
I (@louislam) have the final say. If your pull request does not meet my expectations, I will reject it, no matter how much time you spend on it. Therefore, it is essential to have a discussion beforehand.
2022-09-19 12:56:30 +01:00
I will mark your pull request in the [milestones](https://github.com/louislam/uptime-kuma/milestones), if I am plan to review and merge it.
Also, please don't rush or ask for ETA, because I have to understand the pull request, make sure it is no breaking changes and stick to my vision of this project, especially for large pull requests.
2022-06-01 07:08:10 +01:00
2021-10-25 05:06:01 +01:00
### Recommended Pull Request Guideline
2022-04-27 19:18:47 +01:00
Before deep into coding, discussion first is preferred. Creating an empty pull request for discussion would be recommended.
2022-04-12 06:53:52 +01:00
2021-10-25 05:06:01 +01:00
1. Fork the project
1. Clone your fork repo to local
1. Create a new branch
1. Create an empty commit
`git commit -m "[empty commit] pull request for <YOUR TASK NAME>" --allow-empty`
1. Push to your fork repo
2021-10-26 04:28:38 +01:00
1. Create a pull request: https://github.com/louislam/uptime-kuma/compare
2021-12-02 10:15:14 +00:00
1. Write a proper description
2021-10-25 05:06:01 +01:00
1. Click "Change to draft"
2022-04-12 06:53:52 +01:00
1. Discussion
2021-08-24 07:42:35 +01:00
2021-10-13 01:01:34 +01:00
## Project Styles
2023-02-01 14:39:09 +00:00
I personally do not like something that requires so many configurations before you can finally start the app. I hope Uptime Kuma installation could be as easy as like installing a mobile app.
2023-02-01 14:39:09 +00:00
- Easy to install for non-Docker users, no native build dependency is needed (for x86_64/armv7/arm64), no extra config, no extra effort required to get it running
2021-10-10 07:40:19 +01:00
- Single container for Docker users, no very complex docker-compose file. Just map the volume and expose the port, then good to go
2023-02-01 14:39:09 +00:00
- Settings should be configurable in the frontend. Environment variable is not encouraged, unless it is related to startup such as `DATA_DIR`
- Easy to use
2023-02-01 14:39:09 +00:00
- The web UI styling should be consistent and nice
2021-10-13 01:01:34 +01:00
## Coding Styles
2021-08-24 07:06:23 +01:00
2021-10-03 09:04:16 +01:00
- 4 spaces indentation
- Follow `.editorconfig`
- Follow ESLint
2022-04-25 19:20:13 +01:00
- Methods and functions should be documented with JSDoc
2021-08-24 07:06:23 +01:00
2023-02-01 14:39:09 +00:00
## Name Conventions
2021-08-24 07:06:23 +01:00
- Javascript/Typescript: camelCaseType
2022-06-17 08:07:55 +01:00
- SQLite: snake_case (Underscore)
- CSS/SCSS: kebab-case (Dash)
2021-08-24 07:06:23 +01:00
2021-10-13 01:01:34 +01:00
## Tools
- [`Node.js`](https://nodejs.org/) >= 14
- [`npm`](https://www.npmjs.com/) >= 8.5
- [`git`](https://git-scm.com/)
- IDE that supports [`ESLint`](https://eslint.org/) and EditorConfig (I am using [`IntelliJ IDEA`](https://www.jetbrains.com/idea/))
- A SQLite GUI tool (f.ex. [`SQLite Expert Personal`](https://www.sqliteexpert.com/download.html) or [`DBeaver Community`](https://dbeaver.io/download/))
2023-02-01 14:39:09 +00:00
## Install Dependencies for Development
```bash
2021-10-03 09:04:16 +01:00
npm ci
2021-08-31 13:36:17 +01:00
```
2022-04-25 19:20:13 +01:00
## Dev Server
2022-04-25 19:20:13 +01:00
(2022-04-26 Update)
We can start the frontend dev server and the backend dev server in one command.
Port `3000` and port `3001` will be used.
2021-09-23 15:48:19 +01:00
```bash
2022-04-25 19:20:13 +01:00
npm run dev
```
2023-02-01 14:39:09 +00:00
But sometimes, you would like to keep restart the server, but not the frontend, you can run these command in two terminals:
```
npm run start-frontend-dev
npm run start-server-dev
```
2022-04-25 19:20:13 +01:00
## Backend Server
2022-04-29 04:35:03 +01:00
It binds to `0.0.0.0:3001` by default.
It is mainly a socket.io app + express.js.
2022-04-25 19:27:37 +01:00
express.js is used for:
- entry point such as redirecting to a status page or the dashboard
- serving the frontend built files (index.html, .js and .css etc.)
- serving internal APIs of status page
2022-04-25 19:20:13 +01:00
### Structure in /server/
2023-02-01 14:39:09 +00:00
- jobs/ (Jobs that are running in another process)
2021-10-03 09:04:16 +01:00
- model/ (Object model, auto mapping to the database table name)
- modules/ (Modified 3rd-party modules)
2023-02-01 14:39:09 +00:00
- monitor_types (Monitor Types)
2021-11-17 06:09:12 +00:00
- notification-providers/ (individual notification logic)
2021-10-03 09:04:16 +01:00
- routers/ (Express Routers)
2021-12-02 10:15:14 +00:00
- socket-handler (Socket.io Handlers)
2023-02-01 14:39:09 +00:00
- server.js (Server entry point)
- uptime-kuma-server.js (UptimeKumaServer class, main logic should be here, but some still in `server.js`)
2022-04-25 19:20:13 +01:00
## Frontend Dev Server
2021-10-13 01:01:34 +01:00
2022-04-25 19:20:13 +01:00
It binds to `0.0.0.0:3000` by default. Frontend dev server is used for development only.
2021-10-13 01:01:34 +01:00
2022-04-25 19:20:13 +01:00
For production, it is not used. It will be compiled to `dist` directory instead.
You can use Vue.js devtools Chrome extension for debugging.
2021-10-13 01:01:34 +01:00
### Build the frontend
```bash
npm run build
```
2021-10-13 01:01:34 +01:00
### Frontend Details
Uptime Kuma Frontend is a single page application (SPA). Most paths are handled by Vue Router.
The router is in `src/router.js`
As you can see, most data in frontend is stored in root level, even though you changed the current router to any other pages.
The data and socket logic are in `src/mixins/socket.js`.
2021-10-13 01:01:34 +01:00
## Database Migration
2021-10-03 09:04:16 +01:00
1. Create `patch-{name}.sql` in `./db/`
2. Add your patch filename in the `patchList` list in `./server/database.js`
2021-10-13 01:01:34 +01:00
## Unit Test
2021-10-13 01:01:34 +01:00
```bash
2021-10-05 13:27:43 +01:00
npm run build
npm test
```
2022-09-19 12:39:30 +01:00
## Dependencies
2022-10-02 12:38:33 +01:00
Both frontend and backend share the same package.json. However, the frontend dependencies are eventually not used in the production environment, because it is usually also baked into dist files. So:
2022-09-19 12:39:30 +01:00
- Frontend dependencies = "devDependencies"
- Examples: vue, chart.js
- Backend dependencies = "dependencies"
- Examples: socket.io, sqlite3
- Development dependencies = "devDependencies"
- Examples: eslint, sass
### Update Dependencies
2021-10-05 11:17:54 +01:00
2021-12-02 10:15:14 +00:00
Since previously updating Vite 2.5.10 to 2.6.0 broke the application completely, from now on, it should update patch release version only.
2021-10-05 11:17:54 +01:00
2021-10-13 01:01:34 +01:00
Patch release = the third digit ([Semantic Versioning](https://semver.org/))
2021-10-06 08:36:45 +01:00
2023-02-01 14:39:09 +00:00
If for maybe security reasons, a library must be updated. Then you must need to check if there are any breaking changes.
2021-10-13 01:01:34 +01:00
## Translations
2021-10-06 08:36:45 +01:00
Please add **all** the strings which are translatable to `src/lang/en.json` (If translation keys are ommited, they can not be translated).
**Don't include any other languages in your inital Pull-Request** (even if this is your mother tounge), to avoid merge-conflicts between weblate and `master`.
The translations can then (after merging a PR into `master`) be translated by awesome people donating their language-skills.
If you want to help by translating Uptime Kuma into your language, please visit the [instructions on how to translate using weblate](https://github.com/louislam/uptime-kuma/blob/master/src/lang/README.md).
## Spelling & Grammar
Feel free to correct the grammar in the documentation or code.
My mother language is not english and my grammar is not that great.
2021-10-20 17:03:55 +01:00
2021-10-26 16:56:14 +01:00
## Wiki
2021-12-02 10:15:14 +00:00
Since there is no way to make a pull request to wiki's repo, I have set up another repo to do that.
2021-10-26 16:56:14 +01:00
2021-10-26 17:02:20 +01:00
https://github.com/louislam/uptime-kuma-wiki
2021-10-26 16:56:14 +01:00
2021-12-02 10:15:14 +00:00
## Maintainer
2021-10-20 17:03:55 +01:00
2021-10-20 17:08:46 +01:00
Check the latest issues and pull requests:
2021-10-20 17:03:55 +01:00
https://github.com/louislam/uptime-kuma/issues?q=sort%3Aupdated-desc
### Release Procedures
2021-12-02 10:15:14 +00:00
2021-10-20 17:03:55 +01:00
1. Draft a release note
2022-03-22 08:45:07 +00:00
2. Make sure the repo is cleared
2023-02-21 07:45:18 +00:00
3. If the healthcheck is updated, remember to re-compile it: `npm run build-docker-builder-go`
2022-03-22 08:45:07 +00:00
3. `npm run release-final with env vars: `VERSION` and `GITHUB_TOKEN`
4. Wait until the `Press any key to continue`
5. `git push`
6. Publish the release note as 1.X.X
7. Press any key to continue
8. Deploy to the demo server: `npm run deploy-demo-server`
2021-10-20 17:08:46 +01:00
Checking:
2021-12-02 10:15:14 +00:00
2021-10-20 17:08:46 +01:00
- Check all tags is fine on https://hub.docker.com/r/louislam/uptime-kuma/tags
- Try the Docker image with tag 1.X.X (Clean install / amd64 / arm64 / armv7)
2021-12-02 10:15:14 +00:00
- Try clean installation with Node.js
2021-10-26 16:56:14 +01:00
2022-03-20 03:08:33 +00:00
### Release Beta Procedures
1. Draft a release note, check "This is a pre-release"
2. Make sure the repo is cleared
3. `npm run release-beta` with env vars: `VERSION` and `GITHUB_TOKEN`
2022-03-22 08:45:07 +00:00
4. Wait until the `Press any key to continue`
2022-03-20 03:08:33 +00:00
5. Publish the release note as 1.X.X-beta.X
6. Press any key to continue
2021-10-26 16:56:14 +01:00
### Release Wiki
#### Setup Repo
2021-12-02 10:15:14 +00:00
```bash
2021-10-26 16:56:14 +01:00
git clone https://github.com/louislam/uptime-kuma-wiki.git
cd uptime-kuma-wiki
git remote add production https://github.com/louislam/uptime-kuma.wiki.git
```
#### Push to Production Wiki
2021-12-02 10:15:14 +00:00
```bash
2021-10-26 16:56:14 +01:00
git pull
git push production master
```