diff --git a/.env.gpg b/.env.gpg
index 960d5888..36207604 100644
Binary files a/.env.gpg and b/.env.gpg differ
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
index c9354620..9aaa796b 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -9,7 +9,8 @@ projects: "webapp"
## DescriΓ§Γ£o
-A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
+A clear and concise description of what the problem is. Ex. I'm always
+frustrated when [...]
- [ ] add subtasks with these checkboxes
- [ ] ...
@@ -21,5 +22,4 @@ A clear and concise description of what the problem is. Ex. I'm always frustrate
- [Choc UI](https://www.notion.so/podcodar/Sprint-Planing-2-203c837559494a9887af633792c095ee#3fbfcf4f78d142978b8a29b190f0f17a)
- [Eng wiki > Links uteis](https://www.notion.so/podcodar/Chakra-1e4429a361a844f9a5d5db6790dd154b#e624ab829d754dc591ee3c6bfd1b1d76)
-**Piloto**: Ada King
-**Co-piloto**: Alan Turing
+**Piloto**: Ada King **Co-piloto**: Alan Turing
diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml
index 6a097620..9473b8c7 100644
--- a/.github/workflows/deploy-gh-pages.yml
+++ b/.github/workflows/deploy-gh-pages.yml
@@ -5,8 +5,8 @@ on:
push:
branches: [main]
paths:
- - 'docs/**'
- - '.github/workflows/**'
+ - "docs/**"
+ - ".github/workflows/**"
jobs:
build:
@@ -34,8 +34,8 @@ jobs:
runs-on: ubuntu-latest
permissions:
- pages: write # to deploy to Pages
- id-token: write # to verify the deployment originates from an appropriate source
+ pages: write # to deploy to Pages
+ id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
diff --git a/.github/workflows/quality-gateway-pull-request.yml b/.github/workflows/quality-gateway-pull-request.yml
index d153c2cf..db84921e 100644
--- a/.github/workflows/quality-gateway-pull-request.yml
+++ b/.github/workflows/quality-gateway-pull-request.yml
@@ -3,7 +3,7 @@ on: [pull_request]
jobs:
quality_gateway:
- if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}'
+ if: "${{ github.event.pull_request.head.repo.full_name == github.repository }}"
runs-on: ubuntu-latest
environment: Development
env:
diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml
index 672188bd..02fa45ac 100644
--- a/.github/workflows/tag-release.yml
+++ b/.github/workflows/tag-release.yml
@@ -18,4 +18,3 @@ jobs:
with:
version-file: package.json
token: ${{ secrets.GITHUB_TOKEN }}
-
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index e4f4ebca..65cafee0 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -4,7 +4,7 @@ on:
pull_request:
# all branches
branches:
- - '*'
+ - "*"
push:
branches: [main]
diff --git a/.npmrc b/.npmrc
new file mode 100644
index 00000000..41583e36
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1 @@
+@jsr:registry=https://npm.jsr.io
diff --git a/README.md b/README.md
index c5f6354e..6bc5616a 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,7 @@
# Welcome to PodCodar WebApp!
-This WebApp is the main project of PodCodar, a learning community about programming and technology.
+This WebApp is the main project of PodCodar, a learning community about
+programming and technology.
- π [React Router docs](https://reactrouter.com/start/home)
- π§βπ» [PodCodar Engineering docs](https://podcodar.github.io/webapp)
@@ -19,7 +20,8 @@ This WebApp is the main project of PodCodar, a learning community about programm
### System Dependencies
-To have a consistent development environment, we recommend using the following tools:
+To have a consistent development environment, we recommend using the following
+tools:
- [Bun](https://bun.sh)
- [direnv](https://direnv.net/)
@@ -61,7 +63,8 @@ Now you'll need to pick a host to deploy it to.
### DIY
-If you're familiar with deploying Node applications, the built-in Remix app server is production-ready.
+If you're familiar with deploying Node applications, the built-in Remix app
+server is production-ready.
Make sure to deploy the output of `bun run build`
@@ -70,4 +73,8 @@ Make sure to deploy the output of `bun run build`
## Styling
-This template comes with [Tailwind CSS](https://tailwindcss.com/) already configured for a simple default starting experience. You can use whatever css framework you prefer. See the [Vite docs on css](https://vitejs.dev/guide/features.html#css) for more information.
+This template comes with [Tailwind CSS](https://tailwindcss.com/) already
+configured for a simple default starting experience. You can use whatever css
+framework you prefer. See the
+[Vite docs on css](https://vitejs.dev/guide/features.html#css) for more
+information.
diff --git a/app/entry.server.tsx b/app/entry.server.tsx
index 492fd8c1..a32c535b 100644
--- a/app/entry.server.tsx
+++ b/app/entry.server.tsx
@@ -26,7 +26,7 @@ export default async function handleRequest(
signal: controller.signal,
onError(error: unknown) {
if (!controller.signal.aborted) {
- // Log streaming rendering errors from inside the shell
+ // NOTE: Log streaming rendering errors from inside the shell
console.error(error);
}
status = 500;
diff --git a/app/root.tsx b/app/root.tsx
index 5e640e6b..9cc70d4e 100644
--- a/app/root.tsx
+++ b/app/root.tsx
@@ -77,6 +77,8 @@ export function Layout({ children }: React.PropsWithChildren) {