No description
Find a file
Dmitry dc01b02508
Some checks are pending
Backend CI / test (push) Waiting to run
Backend CI / build (push) Blocked by required conditions
Web App CI / test (push) Waiting to run
Web App CI / build (push) Blocked by required conditions
Deploy Mnemo Cards / Deploy Backend (push) Waiting to run
Deploy Mnemo Cards / Deploy Web App (push) Blocked by required conditions
Deploy Mnemo Cards / Final Verification (push) Blocked by required conditions
ads
2025-12-20 22:11:07 +03:00
.cursor/rules stuff 2025-12-19 02:17:03 +03:00
.forgejo/workflows
.vscode
ai_docs
chat/mnemo_cards_chat stugg 2025-12-14 04:01:44 +03:00
docs
games
mnemo_cards_admin voices 2025-12-19 07:18:46 +03:00
mnemo_cards_backend ads 2025-12-20 22:11:07 +03:00
mnemo_cards_common fixes and format 2025-12-20 21:26:15 +03:00
mnemo_cards_common_backend fixes and stuff 2025-12-18 23:40:48 +03:00
mnemo_cards_frontend_common stugg 2025-12-14 04:01:44 +03:00
mnemo_cards_telegram_bot
mnemo_cards_web_v2 ads 2025-12-20 22:11:07 +03:00
plans stuff 2025-12-20 02:38:51 +03:00
tools
.access
.gitignore
.gitmodules
.metadata
deploy_all.sh
nginx_issues.md
PROGRESS.md tests fix 2025-12-20 20:58:12 +03:00
README.md
test_pubspec.yaml
TODO.md tests fix 2025-12-20 20:58:12 +03:00

Mnemo Cards

Проект для изучения языков с использованием мнемоники.

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

  • mnemo_cards/ - мобильное приложение (Flutter)
  • mnemo_cards_web_v2/ - веб версия (Flutter Web)
  • mnemo_cards_backend/ - backend сервер (Dart)
  • mnemo_cards_common/ - общие библиотеки
  • @tools/ - инструменты разработки и деплоя

Быстрый старт

Разработка

# Установка зависимостей
flutter pub get

# Запуск веб версии
cd mnemo_cards_web_v2
flutter run -d chrome

# Запуск backend
cd mnemo_cards_backend
dart run bin/server.dart

Деплой

# Проверка готовности к деплою
tools/scripts/check_deploy_ready.sh

# Локальное тестирование CI/CD
tools/scripts/test_ci_locally.sh

# Запуск деплоя
git push origin main

Документация

  • CI/CD Setup - настройка автоматического деплоя
  • Web App - документация веб версии
  • Backend - документация backend

Структура tools/

tools/
├── ci/                    # CI/CD workflows для Forgejo
├── deploy/               # Скрипты деплоя
│   ├── backend-build_app.sh    # Сборка backend
│   └── web-app/          # Скрипты деплоя веб приложения
├── docs/                 # Документация
└── scripts/              # Вспомогательные скрипты
    ├── check_deploy_ready.sh   # Проверка готовности деплоя
    └── test_ci_locally.sh      # Локальное тестирование CI/CD