Skip to content

Commit

Permalink
other mentions
Browse files Browse the repository at this point in the history
  • Loading branch information
TyHil committed Oct 30, 2024
1 parent f73de83 commit f4e90cd
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 21 deletions.
7 changes: 0 additions & 7 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,6 @@ NEXT_PUBLIC_VALIDATOR=
NODE_ENV=


########## Umami ##########
## Umami: self-hosted analytics service
## Required only in production.
NEXT_PUBLIC_UMAMI_URL=
NEXT_PUBLIC_UMAMI_WEBSITE_ID=


########## Sentry ##########
## Sentry: error tracking service
## Not required in any environments.
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,3 @@ jobs:

NODE_ENV: production
VERCEL_ENV: preview

# UMAMI
NEXT_PUBLIC_UMAMI_URL: hi
NEXT_PUBLIC_UMAMI_WEBSITE_ID: bye
4 changes: 0 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,6 @@ jobs:

NODE_ENV: test

# UMAMI
NEXT_PUBLIC_UMAMI_URL: hi
NEXT_PUBLIC_UMAMI_WEBSITE_ID: bye

steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 0 additions & 2 deletions docs/WORKFLOWS_AND_DEPLOYMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ All deployment/external service:
- Web server: Vercel
- TRPC Routes: Vercel Edge Functions
- Planner Postgres: Neon
- Umami (User analytics): Railway
- Umami Postgres: Railway
- Sentry (Crash analytics)
- Auth Providers: Discord, Google, Facebook
- Mailtrap (Email "magic link" auth)
4 changes: 0 additions & 4 deletions src/env/schema.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ export const serverSchema = z.object({
*/
export const clientSchema = z.object({
NEXT_PUBLIC_NODE_ENV: z.enum(['development', 'test', 'production']),
NEXT_PUBLIC_UMAMI_URL: z.string(),
NEXT_PUBLIC_UMAMI_WEBSITE_ID: z.string(),
NEXT_PUBLIC_VALIDATOR: z.string(),
});

Expand All @@ -53,7 +51,5 @@ export const clientSchema = z.object({
*/
export const clientEnv = {
NEXT_PUBLIC_NODE_ENV: process.env.NODE_ENV,
NEXT_PUBLIC_UMAMI_URL: process.env.NEXT_PUBLIC_UMAMI_URL,
NEXT_PUBLIC_UMAMI_WEBSITE_ID: process.env.NEXT_PUBLIC_UMAMI_WEBSITE_ID,
NEXT_PUBLIC_VALIDATOR: process.env.NEXT_PUBLIC_VALIDATOR,
};

0 comments on commit f4e90cd

Please sign in to comment.