Files
pp-tcms/docs/docs/getstarted/manual.md
Takeshi Kimata 0da8e4129e docs: update
2024-07-29 22:01:06 +09:00

751 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 https://github.com/kimatata/unittcms.git

Run backend server

Move to backend directory, then install dependencies.

cd backend
npm ci

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 ci

Build frontend code

npm run build

Start frontend server

npm run start