No description
Find a file
2026-03-26 04:05:46 +05:00
frontend Initial commit: Astro frontend project 2026-03-26 04:05:46 +05:00
scripts Initial commit: Astro frontend project 2026-03-26 04:05:46 +05:00
.gitignore Initial commit: Astro frontend project 2026-03-26 04:05:46 +05:00
.nvmrc Initial commit: Astro frontend project 2026-03-26 04:05:46 +05:00
bun.lock Initial commit: Astro frontend project 2026-03-26 04:05:46 +05:00
package.json Initial commit: Astro frontend project 2026-03-26 04:05:46 +05:00
QWEN.md Initial commit: Astro frontend project 2026-03-26 04:05:46 +05:00
README.md Initial commit: Astro frontend project 2026-03-26 04:05:46 +05:00

Astro REDi Monorepo

Этот монорепозиторий содержит frontend и backend части приложения Astro REDi.

Структура проекта

  • frontend/ - Astro-приложение для фронтенда
  • backend/ - PocketBase-приложение для бэкенда

Установка

  1. Установите зависимости для всего проекта:
bun install
  1. Установите зависимости для frontend:
cd frontend && bun install

Или выполните установку всех зависимостей одной командой:

bun run install:all

Запуск приложения

Для одновременного запуска frontend и backend приложения выполните:

bun run dev

Для запуска только frontend:

bun run dev:frontend

Для запуска только backend:

bun run dev:backend

Для остановки запущенных процессов:

bun run stop

Сборка проекта

Для сборки frontend приложения:

bun run build