Skip to content

Commit

Permalink
remove PYODIDE_PATH for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
thadk committed Aug 15, 2024
1 parent 50d8012 commit e9272b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion heat-stack/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ LITEFS_DIR="/litefs/data"
DATABASE_PATH="./prisma/data.db"
DATABASE_URL="file:./data.db?connection_limit=1"
CACHE_DATABASE_PATH="./other/cache.db"
PYODIDE_PATH="public/pyodide-env"
# PYODIDE_PATH="public/pyodide-env"
SESSION_SECRET="super-duper-s3cret"
HONEYPOT_SECRET="super-duper-s3cret"
INTERNAL_COMMAND_TOKEN="some-made-up-token"
Expand Down
2 changes: 1 addition & 1 deletion heat-stack/app/utils/env.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { z } from 'zod'
const schema = z.object({
NODE_ENV: z.enum(['production', 'development', 'test'] as const),
DATABASE_PATH: z.string(),
PYODIDE_PATH: z.string(),
// PYODIDE_PATH: z.string(),
DATABASE_URL: z.string(),
SESSION_SECRET: z.string(),
INTERNAL_COMMAND_TOKEN: z.string(),
Expand Down

0 comments on commit e9272b5

Please sign in to comment.