-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(index): colors, remove checks, degraded
- Loading branch information
1 parent
3e88327
commit dc314a4
Showing
52 changed files
with
2,504 additions
and
665 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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
dist/ | ||
|
||
# NPM | ||
package-lock.json | ||
package.json | ||
# Node | ||
node_modules/ | ||
|
||
# Database | ||
|
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
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,20 @@ | ||
# Deploy the application to fly.io | ||
deploy-fly: | ||
fly deploy --ha=false -c deploy/fly.toml -i {{DOCKER_IMAGE}} | ||
|
||
# Read local jwt key and set it as fly secret | ||
deploy-fly-set-jwt-key-secrets: | ||
#!/bin/bash | ||
# https://github.com/superfly/flyctl/issues/589 | ||
cat <<EOF | fly secrets import -c deploy/fly.toml | ||
JWT_PRIVATE_KEY="""{{JWT_PRIVATE_KEY}}""" | ||
JWT_PUBLIC_KEY="""{{JWT_PUBLIC_KEY}}""" | ||
EOF | ||
|
||
# Deploy locally with docker compose | ||
deploy-docker: | ||
cd deploy && docker compose up | ||
|
||
# Build the application | ||
build: | ||
docker build -f build/Dockerfile -t {{DOCKER_IMAGE}} . |
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 |
---|---|---|
@@ -1,9 +1,7 @@ | ||
{ | ||
"packages": [ | ||
"[email protected]", | ||
"temporal-cli@latest", | ||
"watchexec@latest", | ||
"tailwindcss@latest", | ||
"flyctl@latest", | ||
"just@latest", | ||
"nodePackages.npm@latest", | ||
|
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
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
Oops, something went wrong.