From 2881da4ac99e85bedb928a633fecf86db23bd9a0 Mon Sep 17 00:00:00 2001 From: Vitor Hideyoshi Date: Tue, 21 Apr 2026 22:46:58 -0300 Subject: [PATCH] chore: add example environment file and update deployment workflows --- .env.example | 16 ++++++++++++++++ .github/workflows/deploy-preview.yml | 3 +++ .github/workflows/deploy.yml | 2 ++ .gitignore | 1 + 4 files changed, 22 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..aff04a9 --- /dev/null +++ b/.env.example @@ -0,0 +1,16 @@ +FRONTEND_PATH= +PROJECT_ORG_SLUG= + +SESSION_SECRET= + +DATABASE_URL= + +NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY= +CLERK_SECRET_KEY= + +S3_ENDPOINT= +S3_BUCKET_NAME= +S3_REGION= +S3_ACCESS_KEY= +S3_SECRET_KEY= +S3_PUBLIC_URL= diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 7db3928..cdf3eb6 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -8,10 +8,13 @@ on: pull_request: branches: - main + tags-ignore: + - 'ignore-ci' jobs: deploy: runs-on: ubuntu-latest + if: git steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 52af94b..fe7d1a6 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -8,6 +8,8 @@ on: push: branches: - main + tags-ignore: + - 'ignore-ci' jobs: deploy: diff --git a/.gitignore b/.gitignore index 496eff9..b0fcdf2 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,7 @@ yarn-error.log* # env files (can opt-in for committing if needed) .env* +!.env.example # vercel .vercel