96 switch from azure table storage to sqlite (#97)

* adding typeorm to api

* switching to sqlite

* switching to sqlite

* switching to sqlite

* migrating to sqlite

* updating terraform

* updating infrastructure
This commit was merged in pull request #97.
This commit is contained in:
2025-11-23 10:42:31 -06:00
committed by GitHub
parent f94d0f7ca9
commit f98a2ab127
208 changed files with 27135 additions and 16875 deletions

View File

@@ -1,71 +1,36 @@
locals {
container_app_app_name = {
test = "flying-app-test"
prod = "flying-app-prod"
}
container_app_app_container_image = {
test = "noahspan/flying-app:v1.0.0"
prod = "noahspan/flying-app:v1.0.0"
}
container_app_app_container_name = {
test = "flying-app-test"
prod = "flying-app-prod"
}
container_app_api_name = {
test = "flying-api-test"
prod = "flying-api-prod"
}
container_app_api_container_image = {
test = "noahspan/flying-api:v1.0.0"
prod = "noahspan/flying-api:v1.0.0"
}
container_app_api_container_name = {
test = "flying-api-test"
prod = "flying-api-prod"
}
container_app_environment_name = {
app_name = {
test = "flying-test"
prod = "flying-prod"
}
custom_domain_count = {
test = 0
prod = 1
container_image = {
test = "noahspan/flying-app:v2.0.0-alpha"
prod = "noahspan/flying-app:v2.0.0-alpha"
}
logbook_feature_flag_active = {
test = "true"
prod = "true"
container_name = {
test = "flying-container-test"
prod = "flying-container-prod"
}
log_analytics_workspace_name = {
test = "flying-log-analytics-workspace-test"
prod = "flying-log-analytics-workspace-prod"
container_app_environment_name = {
test = "noahspan-test"
prod = "noahspan-prod"
}
pilots_feature_flag_active = {
test = "true"
prod = "true"
}
storage_account_name = {
test = "noahspanflyingtest"
prod = "noahspanflyingprod"
}
storage_containers = {
storage_account_containers = {
test = ["tracks"]
prod = ["tracks"]
}
storage_tables = {
test = ["logs", "pilots"]
prod = ["logs", "pilots"]
storage_account_storage_shares = {
test = ["flying-test-database-share"]
prod = ["flying-prod-database-share"]
}
}
}