Files
pp-tcms/docs/docs/getstarted/manual.md
Takeshi Kimata faf5790a01 docs: update
2024-06-23 12:08:26 +09:00

765 B

sidebar_position
sidebar_position
3

Running UnitTCMS manually

:::info[Prerequisite]

Prerequisite: v20 or higher node must be installed.

:::

To use UnitTCMS, you need run frontend server and backend(API) server.

First, clone the repository.

git clone git@github.com:kimatata/unittcms.git

Run backend server

Move to backend directory, then install dependencies.

cd backend
npm install

Initialize the database with the following command.

npm run migrate

Start backend server.

npm run start

Run frontend server

Move to frontend directory, then install dependencies.

cd frontend
npm install

Build frontend code

npm run dev

Start frontend server

PORT=8000 npm run start