Created
May 6, 2024 09:40
-
-
Save tsh-code/1abc1e6978611b283d253fcd19330515 to your computer and use it in GitHub Desktop.
This file contains 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
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