Skip to content

Commit 24e34f0

Browse files
committed
Initial commit with responsive dashboard and README updates
1 parent e6f2f3c commit 24e34f0

File tree

11 files changed

+2879
-585
lines changed

11 files changed

+2879
-585
lines changed

.env

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
google_maps_api_key=AIzaSyBWz5umc3lrE4xUdfPviXY4monWFqX3edw
1+
MONGODB_URI=mongodb+srv://locationtrack:HA5IQyPo5sgxHVgj@cluster0.9ghsnyo.mongodb.net/userLocationDB
2+
PORT=3000
3+
4+
# Make sure you have created a database user with the correct permissions
5+
# The cluster address should include the full domain (e.g., cluster0.9ghsnyo.mongodb.net)

.gitignore

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Dependencies
2+
node_modules/
3+
4+
# Environment variables
5+
.env
6+
7+
# Logs
8+
logs
9+
*.log
10+
npm-debug.log*
11+
12+
# Runtime data
13+
pids
14+
*.pid
15+
*.seed
16+
*.pid.lock
17+
18+
# Directory for instrumented libs generated by jscoverage/JSCover
19+
lib-cov
20+
21+
# Coverage directory used by tools like istanbul
22+
coverage
23+
24+
# nyc test coverage
25+
.nyc_output
26+
27+
# Dependency directories
28+
node_modules/
29+
jspm_packages/
30+
31+
# Optional npm cache directory
32+
.npm
33+
34+
# Optional eslint cache
35+
.eslintcache
36+
37+
# Optional REPL history
38+
.node_repl_history
39+
40+
# Output of 'npm pack'
41+
*.tgz
42+
43+
# dotenv environment variable files
44+
.env
45+
.env.development.local
46+
.env.test.local
47+
.env.production.local
48+
.env.local
49+
50+
# Mac files
51+
.DS_Store
52+
53+
# Windows files
54+
Thumbs.db
55+
ehthumbs.db
56+
Desktop.ini

0 commit comments

Comments
 (0)