docs: update

This commit is contained in:
Takeshi Kimata
2024-07-18 22:36:35 +09:00
parent 55786e08be
commit 240234d440
4 changed files with 9 additions and 9 deletions

View File

@@ -10,7 +10,7 @@ sidebar_position: 1
```mermaid
erDiagram
users ||--o{ projects : "user has projects"
users ||--o{ members : "user has members"
users ||--o{ members : "user belongs to the project via the members table"
projects ||--o{ members: "project has members"
projects ||--o{ folders: "project has folders"
projects ||--o{ runs: "project has runs"

View File

@@ -33,8 +33,8 @@ Deploy the frontend to Vercel and the backend to Render.
#### Settings
| Settings | value |
| -------------- | ------------------------------------------------ |
| Root Directory | `backend` |
| Build Command | `npm install && npm run migrate && npm run seed` |
| Start Command | `npm run start` |
| Settings | value |
| -------------- | -------------------------------- |
| Root Directory | `backend` |
| Build Command | `npm install && npm run migrate` |
| Start Command | `npm run start` |

View File

@@ -7,7 +7,7 @@ sidebar_position: 2
First, clone the repository.
```bash
git clone git@github.com:kimatata/unittcms.git
git clone https://github.com/kimatata/unittcms.git
```
and start containers with the following command.

View File

@@ -15,7 +15,7 @@ To use UnitTCMS, you need run frontend server and backend(API) server.
First, clone the repository.
```bash
git clone git@github.com:kimatata/unittcms.git
git clone https://github.com/kimatata/unittcms.git
```
## Run backend server
@@ -57,5 +57,5 @@ npm run build
Start frontend server
```
PORT=8000 npm run start
npm run start
```