mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 00:35:38 +02:00
>Adds `maitred` in charge of handling automated game installs, updates,
and even execution.
>Not only that, we have the hosted stuff here
>- [x] AWS Task on ECS GPUs
>- [ ] Add a service to listen for game starts and stops
(docker-compose.yml)
>- [x] Add a queue for requesting a game to start
>- [x] Fix up the play/watch UI
>TODO:
>- Add a README
>- Add an SST docs
Edit:
- This adds a new landing page, updates the homepage etc etc
>I forgot what the rest of the updated stuff are 😅
30 lines
775 B
TypeScript
30 lines
775 B
TypeScript
/// <reference path="./.sst/platform/config.d.ts" />
|
|
import { readdirSync } from "fs";
|
|
export default $config({
|
|
app(input) {
|
|
return {
|
|
name: "nestri",
|
|
removal: input?.stage === "production" ? "retain" : "remove",
|
|
home: "cloudflare",
|
|
providers: {
|
|
cloudflare: "5.37.1",
|
|
docker: "4.5.5",
|
|
"@pulumi/command": "1.0.1",
|
|
random: "4.16.8",
|
|
aws: "6.67.0",
|
|
tls: "5.1.0",
|
|
command: "0.0.1-testwindows.signing",
|
|
awsx: "2.21.0",
|
|
},
|
|
};
|
|
},
|
|
async run() {
|
|
const outputs = {};
|
|
for (const value of readdirSync("./infra/")) {
|
|
const result = await import("./infra/" + value);
|
|
if (result.outputs) Object.assign(outputs, result.outputs);
|
|
}
|
|
return outputs;
|
|
},
|
|
});
|