File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change
1
+ ENVIRONMENT = "development" # development | production
2
+
3
+ APP_URL = "http://localhost:5173"
4
+ SESSION_SECRET = "3ebc25b381e87193f29ffea6b6d380dd"
5
+
6
+ GITHUB_CLIENT_ID = "..."
7
+ GITHUB_CLIENT_SECRET = "..."
8
+
9
+ GOOGLE_CLIENT_ID = "..."
10
+ GOOGLE_CLIENT_SECRET = "..."
11
+
12
+ RESEND_API_KEY = "..."
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ An introductory starter kit for building applications with React Router v7 (Remi
26
26
27
27
## Demo
28
28
29
- Here’ s a preview of the app:
29
+ Here' s a preview of the app:
30
30
31
31
<div style =" display : flex ;" >
32
32
<img src =" ./.assets/login.png " width =" 45% " />
@@ -60,6 +60,14 @@ npm install
60
60
61
61
### Development
62
62
63
+ First, copy the .dev.vars.example file and rename it to .dev.vars:
64
+
65
+ ``` bash
66
+ cp .dev.vars.example .dev.vars
67
+ ```
68
+
69
+ Update the environment variables in the .dev.vars file according to your needs. These variables will be used by Wrangler during local development.
70
+
63
71
Run an initial database migration:
64
72
65
73
``` bash
You can’t perform that action at this time.
0 commit comments