Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created May 6, 2024 09:40
Show Gist options
  • Save tsh-code/1abc1e6978611b283d253fcd19330515 to your computer and use it in GitHub Desktop.
Save tsh-code/1abc1e6978611b283d253fcd19330515 to your computer and use it in GitHub Desktop.
import { SSTConfig } from "sst";
import { Translations } from "./stacks/Translations";
import { API } from "./stacks/Api";
export default {
config(_input) {
return {
name: "easynmt-opus-translation",
region: "eu-west-1",
};
},
stacks(app) {
app.stack(Translations);
app.stack(API);
},
} satisfies SSTConfig;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment