Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# App
VITE_CONVEX_URL=
VITE_CONVEX_SITE_URL=
VITE_CLERK_PUBLISHABLE_KEY=

# Convex / Clerk
CONVEX_DEPLOYMENT=
CONVEX_DEPLOY_KEY=
CLERK_SECRET_KEY=
CLERK_JWT_ISSUER_DOMAIN=

# Mux
MUX_TOKEN_ID=
MUX_TOKEN_SECRET=
MUX_WEBHOOK_SECRET=
MUX_SIGNING_KEY=
MUX_PRIVATE_KEY=
# Legacy Mux signing aliases, only needed if the app is configured to use them.
# MUX_SIGNING_KEY_ID=
# MUX_SIGNING_PRIVATE_KEY=

# Stripe
STRIPE_SECRET_KEY=
STRIPE_WEBHOOK_SECRET=
STRIPE_PRICE_BASIC_MONTHLY=
STRIPE_PRICE_PRO_MONTHLY=

# Railway object storage
RAILWAY_ACCESS_KEY_ID=
RAILWAY_SECRET_ACCESS_KEY=
RAILWAY_ENDPOINT=
RAILWAY_PUBLIC_URL=
RAILWAY_PUBLIC_URL_INCLUDE_BUCKET=true
RAILWAY_BUCKET_NAME=videos
RAILWAY_REGION=us-east-1
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ yarn-error.log*

# env files (can opt-in for committing if needed)
.env*
!.env.example

# vercel
.vercel
Expand Down
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"window.titleBarStyle": "custom",
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#2d5a2d",
"titleBar.activeForeground": "#ffffff",
"titleBar.inactiveBackground": "#3a6a3a",
"titleBar.inactiveForeground": "#ffffff"
}
}
200 changes: 0 additions & 200 deletions app/routes/dashboard/-useVideoUploadManager.ts

This file was deleted.

3 changes: 3 additions & 0 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion convex/auth.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { env } from "./env";

export default {
providers: [
{
domain: process.env.CLERK_JWT_ISSUER_DOMAIN,
domain: env.CLERK_JWT_ISSUER_DOMAIN,
applicationID: "convex",
},
],
Expand Down
Loading