From 0734ef20c62dff56ae72f5187a8fdf293dce21a9 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Fri, 15 May 2026 01:24:32 +0200 Subject: [PATCH] chore: stop tracking .env (already in .gitignore) --- .env | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .env diff --git a/.env b/.env deleted file mode 100644 index 19fd8e3..0000000 --- a/.env +++ /dev/null @@ -1,27 +0,0 @@ -POSTGRES_USER=postgres -POSTGRES_PASSWORD=postgres -POSTGRES_DB=thoughts - -HOST=0.0.0.0 -PORT=8000 -DATABASE_URL="postgresql://postgres:postgres@localhost:5432/thoughts" -JWT_SECRET=secret - -# Public base URL — used for ActivityPub actor URLs and canonical links -BASE_URL=http://localhost:8000 - -# CORS — comma-separated allowed origins, or * for permissive (default: *) -CORS_ORIGINS=* -# CORS_ORIGINS=https://your-nextjs-app.example.com - -# Rate limiting — max requests per minute per IP (disabled by default) -# RATE_LIMIT=60 -ALLOW_REGISTRATION=true # set to false to disable new sign-ups -RUST_ENV=development # set to "production" to disable AP debug mode - -# NATS event bus (optional — federation and notifications still work without it, -# but events will not be delivered to the worker) -NATS_URL=nats://localhost:4222 - -# Logging -RUST_LOG=info \ No newline at end of file