materia/README.md

22 lines
377 B
Markdown
Raw Normal View History

2024-05-07 16:49:30 +05:00
# materia
Materia is a file server.
## Database migrations
```bash
# Initialize
alembic init -t async src/db/migrations
# Autogenerate new migration
alembic revision --autogenerate -m "Initial migration"
# Apply the migration
alembic upgrade head
# Rollback the migration
alembic downgrade head
```
2024-05-07 16:49:30 +05:00
# License
**materia** is licensed under the [MIT License](LICENSE).