yggdrasil/README.md

18 lines
336 B
Markdown
Raw Normal View History

2023-06-18 22:27:08 +05:30
# Yggdrasil
Self-hosted Minecraft authentication server with authlib-injector support
# Setup
1. Declare database URL
```sh
$ export DATABASE_URL="sqlite:yggdrasil.db"
```
2. Create database (install sqlx cli tool if not already)
```sh
$ sqlx db create
```
3. Run SQL migrations (this creates the tables)
```sh
$ sqlx migrate run
```