Skip to content

Commit f322424

Browse files
authored
Merge pull request #9 from GraphDone/feature/signup-login
Complete Authentication System with OAuth Disabled
2 parents 75713aa + f58d792 commit f322424

49 files changed

Lines changed: 9440 additions & 1163 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Server Configuration
2+
PORT=4127
3+
NODE_ENV=development
4+
5+
# Database Configuration
6+
NEO4J_URI=bolt://localhost:7687
7+
NEO4J_USER=neo4j
8+
NEO4J_PASSWORD=graphdone_password
9+
10+
# Authentication
11+
JWT_SECRET=your-secret-key-change-this-in-production
12+
SESSION_SECRET=your-session-secret-change-this-in-production
13+
14+
# OAuth Configuration
15+
# Google OAuth - Get from: https://console.cloud.google.com/
16+
GOOGLE_CLIENT_ID=your-google-client-id
17+
GOOGLE_CLIENT_SECRET=your-google-client-secret
18+
19+
# GitHub OAuth - Get from: https://github.com/settings/developers
20+
GITHUB_CLIENT_ID=your-github-client-id
21+
GITHUB_CLIENT_SECRET=your-github-client-secret
22+
23+
# LinkedIn OAuth - Get from: https://www.linkedin.com/developers/apps
24+
LINKEDIN_CLIENT_ID=your-linkedin-client-id
25+
LINKEDIN_CLIENT_SECRET=your-linkedin-client-secret
26+
27+
# Frontend URL (for OAuth callbacks)
28+
CLIENT_URL=http://localhost:3127
29+
30+
# Development URLs
31+
VITE_API_URL=http://localhost:4127
32+
VITE_WS_URL=ws://localhost:4127

0 commit comments

Comments
 (0)