Skip to content

Commit 66b0abe

Browse files
committed
fix init of tigris
1 parent 8005692 commit 66b0abe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

remix.init/index.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,10 @@ async function setupDeployment({ rootDirectory }) {
218218
console.log(`🗄️ Setting up Tigris object storage`)
219219
const $S = $({ stdio: ['inherit', 'ignore', 'inherit'], cwd: rootDirectory })
220220
if (shouldSetupStaging) {
221-
await $S`fly storage create --yes --app ${APP_NAME}-staging`
221+
await $S`fly storage create --yes --app ${APP_NAME}-staging --name ${APP_NAME}-staging-epic-stack`
222222
console.log(` ✅ Created storage for staging`)
223223
}
224-
await $S`fly storage create --yes --app ${APP_NAME}`
224+
await $S`fly storage create --yes --app ${APP_NAME} --name ${APP_NAME}-epic-stack`
225225
console.log(` ✅ Created storage for production`)
226226

227227
const { shouldDeploy } = await inquirer.prompt([

0 commit comments

Comments
 (0)