Animated characters for chatters in your stream.
docker compose -f compose.dev.yaml up -d
Warning
By default, PostgreSQL runs on port 5432
. Before starting, ensure this port is not already in use on your system.
To change the PostgreSQL port, use the following command structure:
docker compose -f compose.dev.yaml run -d -p <port>:5432
Important
You need node installed.
-
Copy environment variables
cp .env.example .env
-
Install and run postgres
You can install PostgreSQL directly on your system or use Docker. For Docker instructions, refer to Run the database in docker.
-
Install pnpm
npm install -g pnpm
-
Install dependencies
pnpm install
-
Generate schema and migrate
pnpm run db:migrate:dev
-
Fill the database with data
pnpm run db:seed
-
Start the server
pnpm run dev
- http://localhost:3000 - admin panel backend
- http://localhost:4200 - admin panel frontend
- http://localhost:4300 - client
pnpm run lint