scribe/src/start_server.cr

17 lines
276 B
Crystal
Raw Normal View History

2021-05-01 23:02:08 +02:00
require "./app"
Habitat.raise_if_missing_settings!
if LuckyEnv.development?
2021-05-01 23:02:08 +02:00
Avram::Migrator::Runner.new.ensure_migrated!
Avram::SchemaEnforcer.ensure_correct_column_mappings!
end
app_server = AppServer.new
Signal::INT.trap do
app_server.close
end
app_server.listen