Serve

The serve command performs necessary database migration CONCEPT, seeding records CONCEPT, and starts the HTTP server.

Start the server

Use serve command to start the server.

cargo teo serve

Skip the migration

To skip the auto migration, pass the option --no-migration.

cargo teo serve --no-migration

Skip the seeding

To skip the auto seeding, pass the option --no-autoseed.

cargo teo serve --no-autoseed