From bd20c5499fd2d2bda0675ac605bdea8822eef2e3 Mon Sep 17 00:00:00 2001 From: Lucas Smith Date: Mon, 18 Mar 2024 01:28:26 +0000 Subject: [PATCH] fix: update codespaces on create script --- .devcontainer/on-create.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.devcontainer/on-create.sh b/.devcontainer/on-create.sh index fbd5351f2..1f71cdf3b 100755 --- a/.devcontainer/on-create.sh +++ b/.devcontainer/on-create.sh @@ -1,13 +1,10 @@ #!/usr/bin/env bash -# Start the database and mailserver -docker compose -f ./docker/compose-without-app.yml up -d - # Install dependencies npm install # Copy the env file cp .env.example .env -# Run the migrations -npm run prisma:migrate-dev +# Run the dev setup +npm run dx