cloud infra
0

Configure Feed

Select the types of activity you want to include in your feed.

Add blog service!

nagee (May 27, 2026, 9:49 AM -0700) dabc5a75 e9f155e9

+17
+17
configure/operations/services.py
··· 104 104 105 105 class ServiceVersions: 106 106 homepage: int = 5 107 + blogservice: int = 1 107 108 108 109 109 110 SERVICE_VERSIONS = ServiceVersions() ··· 124 125 name="homepage", 125 126 directory=Path("/usr/local/bin"), 126 127 s3_path=f"nagee/builds/homepage/{SERVICE_VERSIONS.homepage}/homepage", 128 + ), 129 + ), 130 + ), 131 + Service( 132 + name="blogservice", 133 + subdomain="", 134 + envs=[Env.PROD], 135 + caddy_config=f"reverse_proxy localhost:8082", 136 + systemd_config=SystemdServiceConf( 137 + service_name="blogservice", 138 + version=SERVICE_VERSIONS.blogservice, 139 + port=8081, 140 + executable=ExecutableConf( 141 + name="blogservice", 142 + directory=Path("/usr/local/bin"), 143 + s3_path=f"nagee/builds/blogservice/{SERVICE_VERSIONS.blogservice}/blogservice", 127 144 ), 128 145 ), 129 146 ),