File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ # Database
2
+ DATABASE_URL = " " # PostgreSQL connection string
3
+ # For Docker Compose: postgresql://hacktoberfest:hacktoberfest123@localhost:5432/hacktoberfest
4
+ # For cloud providers: copy the connection string from your provider
5
+
6
+ # Authentication
1
7
AUTH_SECRET = " " # A random string
2
8
AUTH_URL = " " # Should be http://localhost:3000 for local development
3
9
AUTH_GITHUB_ID = " "
4
10
AUTH_GITHUB_SECRET = " "
5
- XATA_API_KEY = " "
6
- XATA_BRANCH = " " # Default should be "main"
11
+ AUTH_DRIZZLE_URL = " $DATABASE_URL " # Should be the same as DATABASE_URL
7
12
13
+ # Optional
8
14
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME = " " # Optional
9
- NEXT_PUBLIC_ANALYTICS_WEBSITE_ID = " " # Optional
15
+ NEXT_PUBLIC_ANALYTICS_WEBSITE_ID = " " # Optional
Original file line number Diff line number Diff line change @@ -97,7 +97,6 @@ Simply create a PostgreSQL database and copy the connection string.
97
97
Create a ` .env ` file in the root of the project and add the following variables:
98
98
99
99
``` sh
100
-
101
100
# Database
102
101
DATABASE_URL=" " # PostgreSQL connection string
103
102
# For Docker Compose: postgresql://hacktoberfest:hacktoberfest123@localhost:5432/hacktoberfest
You can’t perform that action at this time.
0 commit comments