File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
- require ( "dotenv" ) . config ( { path : "../.env" } ) ;
1
+ require ( "dotenv" ) . config ( ) ;
2
2
const express = require ( "express" ) ;
3
3
const crypto = require ( "crypto" ) ;
4
4
@@ -9,6 +9,7 @@ app.set("view engine", "ejs");
9
9
app . set ( "views" , "./views" ) ;
10
10
app . use ( express . static ( "public" ) ) ;
11
11
12
+ console . log ( process . env . AUTH_SERVER ) ;
12
13
const authServer = process . env . AUTH_SERVER ;
13
14
const clientId = process . env . CLIENT_ID ;
14
15
const clientSecret = process . env . CLIENT_SECRET ;
Original file line number Diff line number Diff line change 1
1
: root {
2
2
/* Color Variables */
3
- --primary-color : # 007bff ;
4
- --secondary-color : # 6c757d ;
3
+ --primary-color : # 000000 ;
4
+ --secondary-color : # 808080 ;
5
5
--danger-color : # dc3545 ;
6
6
--success-color : # 28a745 ;
7
7
--white : # ffffff ;
Original file line number Diff line number Diff line change 1
- require ( "dotenv" ) . config ( { path : "../.env" } ) ;
1
+ require ( "dotenv" ) . config ( ) ;
2
2
const bodyParser = require ( "body-parser" ) ;
3
3
const cors = require ( "cors" ) ;
4
4
const express = require ( "express" ) ;
You can’t perform that action at this time.
0 commit comments