This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
delete |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using MyApp.Migrations; | |
using ServiceStack; | |
using ServiceStack.Data; | |
using ServiceStack.OrmLite; | |
[assembly: HostingStartup(typeof(MyApp.ConfigureDbMigrations))] | |
namespace MyApp; | |
// Code-First DB Migrations: https://docs.servicestack.net/ormlite/db-migrations |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using MyApp.Migrations; | |
using ServiceStack; | |
using ServiceStack.Data; | |
using ServiceStack.OrmLite; | |
[assembly: HostingStartup(typeof(MyApp.ConfigureDbMigrations))] | |
namespace MyApp; | |
public class ConfigureDbMigrations : IHostingStartup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
debug false | |
name Admin UI | |
redis.connection localhost:6379 | |
icon redis.ico | |
jsMinifier ServiceStack | |
htmlMinifier ServiceStack | |
features RunAsAdminFeature, AdminRedisFeature | |
RunAsAdminFeature { RedirectTo: '/admin-ui/redis' } | |
CefConfig { width:1150, height:1050 } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ServiceStack; | |
[assembly: HostingStartup(typeof(MyApp.ConfigureProfiling))] | |
namespace MyApp; | |
public class ConfigureProfiling : IHostingStartup | |
{ | |
public void Configure(IWebHostBuilder builder) => builder | |
.ConfigureServices((context, services) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
services: | |
app: | |
image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} | |
restart: always | |
depends_on: | |
app-litestream: | |
condition: service_healthy | |
ports: | |
- "8080" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
services: | |
app: | |
image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} | |
restart: always | |
depends_on: | |
app-litestream: | |
condition: service_healthy | |
ports: | |
- "8080" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
services: | |
app: | |
image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} | |
restart: always | |
depends_on: | |
app-litestream: | |
condition: service_healthy | |
ports: | |
- "8080" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Funq; | |
using ServiceStack; | |
using MyApp.ServiceInterface; | |
[assembly: HostingStartup(typeof(MyApp.AppHost))] | |
namespace MyApp; | |
public class AppHost : AppHostBase, IHostingStartup | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
services: | |
${APP_NAME}: | |
image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} | |
depends_on: | |
${APP_NAME}-litestream: | |
condition: service_healthy | |
restart: always | |
network_mode: bridge | |
ports: |