This commit is contained in:
Shiroyasha 2025-06-10 00:54:51 +03:00
commit 1c273e1fc0
Signed by: shiroyashik
GPG key ID: E4953D3940D7860A
46 changed files with 7589 additions and 0 deletions

17
README.md Normal file
View file

@ -0,0 +1,17 @@
## Axumbooru
**Проект не завершен и находится в активной разработке!**
Выполнить для подготовки окружения к разработке
```bash
echo -e "DATABASE_URL=postgres://axumbooru:axumbooru@localhost/axumbooru\nRUST_LOG=debug" > .env
cp booruconfig_default.toml booruconfig.toml
cp docker-compose_templ.yaml docker-compose.yaml
# Запускает Postgresql на 5432,
# szurubooru/client на 80 и phpPgAdmin на 8080
docker compose up -d
cargo install sea-orm-cli
# Не забудь добавить ~/.cargo/bin в PATH
sea migrate
# Собирает и запускает Axumbooru
cargo run
```