Running UnitTCMS manually
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