diff --git a/docs/docs/architecture/er.md b/docs/docs/architecture/er.md index 698c5cd..8c21dab 100644 --- a/docs/docs/architecture/er.md +++ b/docs/docs/architecture/er.md @@ -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" diff --git a/docs/docs/getstarted/deployment.md b/docs/docs/getstarted/deployment.md index 93263f9..ae0c373 100644 --- a/docs/docs/getstarted/deployment.md +++ b/docs/docs/getstarted/deployment.md @@ -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` | diff --git a/docs/docs/getstarted/docker.md b/docs/docs/getstarted/docker.md index 1a3015f..cfd90a7 100644 --- a/docs/docs/getstarted/docker.md +++ b/docs/docs/getstarted/docker.md @@ -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. diff --git a/docs/docs/getstarted/manual.md b/docs/docs/getstarted/manual.md index 0897e65..20b6fa4 100644 --- a/docs/docs/getstarted/manual.md +++ b/docs/docs/getstarted/manual.md @@ -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 ```