UI for ru_transformers LIVE
Create a .env file:
SITE=http://localhost:3000
JWT_SIGNING_KEY=
GOOGLE_CLIENTID=
GOOGLE_CLIENTSECRET=
POSTGRES_USER=porf
POSTGRES_PASSWORD=123456
POSTGRES_DB=porf
docker-compose up -d --buildThe application will be available at http://localhost:3000,
and PostgreSQL will listen on localhost:5433.
To build and start the development Compose stack:
docker-compose -f docker-compose-dev.yml up --buildCheck the service status:
docker-compose ps
curl http://localhost:3000/healthnpm install
npm --prefix client install
npm --prefix server install
npm run devVite serves the client at http://localhost:8080 and proxies API requests to
the server at http://localhost:3000.
npm run build
npm run lintIndividual checks:
npm --prefix client run typecheck
npm --prefix server run typecheck