Add K8s app deployment, Dockerfile, and CI workflow (Option A)

This commit is contained in:
Story Crater Bot
2026-08-23 00:01:30 -07:00
parent 9ca988aeb3
commit eaed7fc42a
8 changed files with 272 additions and 1 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ pub async fn start_server(port: u16, api_key: String) -> Result<()> {
.route("/memory/projects", web::get().to(projects_handler))
.route("/memory/projects/{id}/status", web::get().to(project_status))
})
.bind(("127.0.0.1", port))?
.bind(("0.0.0.0", port))?
.run()
.await?;