this repo has no description
1# @aurabloom/server
2
3## setup
4
5make sure you have everything installed with `bun install`.
6
7then, run the database migrations with `bun run db:migrate`.
8
9when you make changes to the database schema, you will need to:
10- generate migrations, `bun run db:generate`, and
11- run the migrations, `bun run db:migrate`
12
13aurabloom will stop on startup if the database file either does not exist
14or doesn't have the expected tables.
15
16you can now start the server with `bun run start` or `bun run dev` if you'd like
17the server to restart automatically when changes are made.
18
19## copying
20
21@aurabloom/server uses the same license as specified in the root README.