-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit of scaffolded project. For details see https://github.…
- Loading branch information
Luke Bunselmeyer
committed
May 6, 2023
0 parents
commit bef30a0
Showing
57 changed files
with
18,912 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/node_modules | ||
*.log | ||
.DS_Store | ||
.env | ||
/.cache | ||
/public/build | ||
/build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
DATABASE_URL="file:./data.db?connection_limit=1" | ||
SESSION_SECRET="super-duper-s3cret" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/** @type {import('eslint').Linter.Config} */ | ||
module.exports = { | ||
root: true, | ||
extends: [ | ||
"@remix-run/eslint-config", | ||
"@remix-run/eslint-config/node", | ||
"@remix-run/eslint-config/jest-testing-library", | ||
"prettier", | ||
], | ||
env: { | ||
"cypress/globals": true, | ||
}, | ||
plugins: ["cypress"], | ||
// we're using vitest which has a very similar API to jest | ||
// (so the linting plugins work nicely), but it means we have to explicitly | ||
// set the jest version. | ||
settings: { | ||
jest: { | ||
version: 28, | ||
}, | ||
}, | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
name: 🚀 Deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
pull_request: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
actions: write | ||
contents: read | ||
|
||
jobs: | ||
lint: | ||
name: ⬣ ESLint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ⬇️ Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: ⎔ Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: npm | ||
cache-dependency-path: ./package.json | ||
node-version: 18 | ||
|
||
- name: 📥 Install deps | ||
run: npm install | ||
|
||
- name: 🔬 Lint | ||
run: npm run lint | ||
|
||
typecheck: | ||
name: ʦ TypeScript | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ⬇️ Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: ⎔ Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: npm | ||
cache-dependency-path: ./package.json | ||
node-version: 18 | ||
|
||
- name: 📥 Install deps | ||
run: npm install | ||
|
||
- name: 🔎 Type check | ||
run: npm run typecheck --if-present | ||
|
||
vitest: | ||
name: ⚡ Vitest | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ⬇️ Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: ⎔ Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: npm | ||
cache-dependency-path: ./package.json | ||
node-version: 18 | ||
|
||
- name: 📥 Install deps | ||
run: npm install | ||
|
||
- name: ⚡ Run vitest | ||
run: npm run test -- --coverage | ||
|
||
cypress: | ||
name: ⚫️ Cypress | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: ⬇️ Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: 🏄 Copy test env vars | ||
run: cp .env.example .env | ||
|
||
- name: ⎔ Setup node | ||
uses: actions/setup-node@v3 | ||
with: | ||
cache: npm | ||
cache-dependency-path: ./package.json | ||
node-version: 18 | ||
|
||
- name: 📥 Install deps | ||
run: npm install | ||
|
||
- name: 🛠 Setup Database | ||
run: npx prisma migrate reset --force | ||
|
||
- name: ⚙️ Build | ||
run: npm run build | ||
|
||
- name: 🌳 Cypress run | ||
uses: cypress-io/github-action@v5 | ||
with: | ||
start: npm run start:mocks | ||
wait-on: http://localhost:8811 | ||
env: | ||
PORT: 8811 | ||
|
||
deploy: | ||
name: 🚀 Deploy | ||
runs-on: ubuntu-latest | ||
needs: [lint, typecheck, vitest, cypress] | ||
# only build/deploy main branch on pushes | ||
if: ${{ (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') && github.event_name == 'push' }} | ||
|
||
steps: | ||
- name: ⬇️ Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: 👀 Read app name | ||
uses: SebRollen/[email protected] | ||
id: app_name | ||
with: | ||
file: fly.toml | ||
field: app | ||
|
||
- name: 🚀 Deploy Staging | ||
if: ${{ github.ref == 'refs/heads/dev' }} | ||
uses: superfly/[email protected] | ||
with: | ||
args: deploy --remote-only --build-arg COMMIT_SHA=${{ github.sha }} --app ${{ steps.app_name.outputs.value }}-staging | ||
env: | ||
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | ||
|
||
- name: 🚀 Deploy Production | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
uses: superfly/[email protected] | ||
with: | ||
args: deploy --remote-only --build-arg COMMIT_SHA=${{ github.sha }} --app ${{ steps.app_name.outputs.value }} | ||
env: | ||
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
node_modules | ||
|
||
/build | ||
/public/build | ||
.env | ||
|
||
/cypress/screenshots | ||
/cypress/videos | ||
/prisma/data.db | ||
/prisma/data.db-journal |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM gitpod/workspace-full | ||
|
||
# Install Fly | ||
RUN curl -L https://fly.io/install.sh | sh | ||
ENV FLYCTL_INSTALL="/home/gitpod/.fly" | ||
ENV PATH="$FLYCTL_INSTALL/bin:$PATH" | ||
|
||
# Install GitHub CLI | ||
RUN brew install gh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# https://www.gitpod.io/docs/config-gitpod-file | ||
|
||
image: | ||
file: .gitpod.Dockerfile | ||
|
||
ports: | ||
- port: 3000 | ||
onOpen: notify | ||
|
||
tasks: | ||
- name: Restore .env file | ||
command: | | ||
if [ -f .env ]; then | ||
# If this workspace already has a .env, don't override it | ||
# Local changes survive a workspace being opened and closed | ||
# but they will not persist between separate workspaces for the same repo | ||
echo "Found .env in workspace" | ||
else | ||
# There is no .env | ||
if [ ! -n "${ENV}" ]; then | ||
# There is no $ENV from a previous workspace | ||
# Default to the example .env | ||
echo "Setting example .env" | ||
cp .env.example .env | ||
else | ||
# After making changes to .env, run this line to persist it to $ENV | ||
# eval $(gp env -e ENV="$(base64 .env | tr -d '\n')") | ||
# | ||
# Environment variables set this way are shared between all your workspaces for this repo | ||
# The lines below will read $ENV and print a .env file | ||
echo "Restoring .env from Gitpod" | ||
echo "${ENV}" | base64 -d | tee .env > /dev/null | ||
fi | ||
fi | ||
- init: npm install | ||
command: npm run setup && npm run dev | ||
|
||
vscode: | ||
extensions: | ||
- ms-azuretools.vscode-docker | ||
- esbenp.prettier-vscode | ||
- dbaeumer.vscode-eslint | ||
- bradlc.vscode-tailwindcss |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
legacy-peer-deps=true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
node_modules | ||
|
||
/build | ||
/public/build | ||
.env | ||
|
||
/app/styles/tailwind.css |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# base node image | ||
FROM node:16-bullseye-slim as base | ||
|
||
# set for base and all layer that inherit from it | ||
ENV NODE_ENV production | ||
|
||
# Install openssl for Prisma | ||
RUN apt-get update && apt-get install -y openssl sqlite3 | ||
|
||
# Install all node_modules, including dev dependencies | ||
FROM base as deps | ||
|
||
WORKDIR /myapp | ||
|
||
ADD package.json package-lock.json .npmrc ./ | ||
RUN npm install --production=false | ||
|
||
# Setup production node_modules | ||
FROM base as production-deps | ||
|
||
WORKDIR /myapp | ||
|
||
COPY --from=deps /myapp/node_modules /myapp/node_modules | ||
ADD package.json package-lock.json .npmrc ./ | ||
RUN npm prune --production | ||
|
||
# Build the app | ||
FROM base as build | ||
|
||
WORKDIR /myapp | ||
|
||
COPY --from=deps /myapp/node_modules /myapp/node_modules | ||
|
||
ADD prisma . | ||
RUN npx prisma generate | ||
|
||
ADD . . | ||
RUN npm run build | ||
|
||
# Finally, build the production image with minimal footprint | ||
FROM base | ||
|
||
ENV DATABASE_URL=file:/data/sqlite.db | ||
ENV PORT="8080" | ||
ENV NODE_ENV="production" | ||
|
||
# add shortcut for connecting to database CLI | ||
RUN echo "#!/bin/sh\nset -x\nsqlite3 \$DATABASE_URL" > /usr/local/bin/database-cli && chmod +x /usr/local/bin/database-cli | ||
|
||
WORKDIR /myapp | ||
|
||
COPY --from=production-deps /myapp/node_modules /myapp/node_modules | ||
COPY --from=build /myapp/node_modules/.prisma /myapp/node_modules/.prisma | ||
|
||
COPY --from=build /myapp/build /myapp/build | ||
COPY --from=build /myapp/public /myapp/public | ||
COPY --from=build /myapp/package.json /myapp/package.json | ||
COPY --from=build /myapp/start.sh /myapp/start.sh | ||
COPY --from=build /myapp/prisma /myapp/prisma | ||
|
||
ENTRYPOINT [ "./start.sh" ] |
Oops, something went wrong.