Copy .env.default
cp .env.default .envFirst time run database migration
sqlx database setupRun the following command in the root of your project to start developing with the default platform:
dx serve --platform webTo run for a different platform, use the --platform platform flag. E.g.
dx serve --platform desktopWhen changing styles using tailwind, for real-time update of the main.css file run:
npx tailwindcss -i ./assets/styling/input.css -o ./assets/styling/main.css --watchTo fill application with dummy data simply run (Be aware that this will remove all your current data):
make loadWhen you create a new feature or create some breaking change (e.g. database migration) it is good idea to create new snapshot (or modify Makefile if necessary):
make dump
