тесты
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
cracklesparkle b88d83cd74 Fix build errors 8 months ago
backend_fastapi pd join fixed 12 months ago
client Fix build errors 8 months ago
ems Disabled signup; Map test 8 months ago
monitor Map update 9 months ago
src first init 12 months ago
.env.example Map update 9 months ago
.gitignore Map caching in Redis 9 months ago
docker-compose.yml Map experiments 9 months ago
main.py General 12 months ago
readme.md Map update 9 months ago
requierements.txt General 12 months ago
test.html first init 12 months ago
test.py first init 12 months ago

readme.md

client

Рекомендуемый способ запуска всех сервисов через docker-compose.yml:

docker compose up -d --build

client

Переменные окружения (.env) описаны в .env.example

Docker

Есть два варианта запуска в Docker:

  1. Рекомендованный способ сборки через docker-compose.yml, находящийся в корне репозитория:
docker compose up -d --build --no-deps client
  1. Сборка отдельного контейнера без docker compose, из Dockerfile:
cd client
docker build -t client .
docker run -d --name client -p 5173:5173 --restart always client

Локально

⚠ Рекомендуется Node LTS версии ^20.15.1

cd client

В client:

  1. Установить зависимости:
npm install
  1. Запуск vite в dev-режиме:
npm run dev

или в production-ready serve:

npm serve

monitor