mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 08:45:38 +02:00
## Description We are attempting to hookup maitred to the API Maitred duties will be: - [ ] Hookup to the API - [ ] Wait for signal (from the API) to start Steam - [ ] Stop signal to stop the gaming session, clean up Steam... and maybe do the backup ## Summary by CodeRabbit - **New Features** - Introduced Docker-based deployment configurations for both the main and relay applications. - Added new API endpoints enabling real-time machine messaging and enhanced IoT operations. - Expanded database schema and actor types to support improved machine tracking. - **Improvements** - Enhanced real-time communication and relay management with streamlined room handling. - Upgraded dependencies, logging, and error handling for greater stability and performance. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: DatCaptainHorse <DatCaptainHorse@users.noreply.github.com> Co-authored-by: Kristian Ollikainen <14197772+DatCaptainHorse@users.noreply.github.com>
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
import { vpc } from "./vpc";
|
|
import { bus } from "./bus";
|
|
import { domain } from "./dns";
|
|
import { secret } from "./secret";
|
|
import { postgres } from "./postgres";
|
|
|
|
sst.Linkable.wrap(random.RandomString, (resource) => ({
|
|
properties: {
|
|
value: resource.result,
|
|
},
|
|
}));
|
|
|
|
export const urls = new sst.Linkable("Urls", {
|
|
properties: {
|
|
api: "https://api." + domain,
|
|
auth: "https://auth." + domain,
|
|
site: $dev ? "http://localhost:3000" : "https://" + domain,
|
|
},
|
|
});
|
|
|
|
export const apiFunction = new sst.aws.Function("ApiFn", {
|
|
vpc,
|
|
handler: "packages/functions/src/api/index.handler",
|
|
permissions: [
|
|
{
|
|
actions: ["iot:*"],
|
|
resources: ["*"],
|
|
},
|
|
],
|
|
link: [
|
|
bus,
|
|
urls,
|
|
postgres,
|
|
secret.PolarSecret,
|
|
],
|
|
timeout: "3 minutes",
|
|
streaming: !$dev,
|
|
url: true
|
|
})
|
|
|
|
export const api = new sst.aws.Router("Api", {
|
|
routes: {
|
|
"/*": apiFunction.url
|
|
},
|
|
domain: {
|
|
name: "api." + domain,
|
|
dns: sst.cloudflare.dns(),
|
|
},
|
|
})
|
|
|
|
export const outputs = {
|
|
api: api.url,
|
|
}; |