Skip to content

Commit f4ebdf2

Browse files
committed
.
1 parent c9ffb44 commit f4ebdf2

28 files changed

+119
-31
lines changed

.env.example

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Spotify Configuration
2+
VITE_SPOTIFY_CLIENT_ID=your_client_id_here
3+
VITE_SPOTIFY_CLIENT_SECRET=your_client_secret_here
4+
VITE_SPOTIFY_REDIRECT_URI=http://localhost:3000/callback
5+
6+
# API Configuration
7+
VITE_WORKER_URL=http://localhost:8787

.gitignore

Lines changed: 35 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,46 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
3-
# dependencies
4-
/node_modules
5-
/.pnp
1+
# Dependencies
2+
node_modules
3+
.pnp
64
.pnp.js
75

8-
# testing
9-
/coverage
6+
# Testing
7+
coverage
108

11-
# production
12-
/build
9+
# Production
10+
dist
11+
dist-ssr
12+
*.local
1313

14-
# misc
15-
.DS_Store
14+
# Environment files
1615
.env
17-
.env.local
18-
.env.development.local
19-
.env.test.local
20-
.env.production.local
16+
.env.*
17+
!.env.example
18+
19+
# Misc
20+
.DS_Store
21+
*.pem
22+
.vscode/*
23+
!.vscode/extensions.json
24+
.idea
25+
*.suo
26+
*.ntvs*
27+
*.njsproj
28+
*.sln
29+
*.sw?
2130

31+
# Logs
32+
logs
33+
*.log
2234
npm-debug.log*
2335
yarn-debug.log*
2436
yarn-error.log*
37+
pnpm-debug.log*
38+
lerna-debug.log*
39+
40+
# TypeScript
41+
*.tsbuildinfo
42+
43+
# Cloudflare
44+
.wrangler
2545
.dev.vars
26-
.prod.env
2746
.prod.vars

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
{
1+
{
22
"name": "personal-site",
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
66
"@testing-library/jest-dom": "^5.17.0",
77
"@testing-library/react": "^13.4.0",
88
"@testing-library/user-event": "^13.5.0",
9+
"ajv-keywords": "^5.1.0",
10+
"itty-router": "^4.0.27",
11+
"lru-cache": "^10.1.0",
912
"react": "^18.2.0",
1013
"react-dom": "^18.2.0",
1114
"react-scripts": "5.0.1",
15+
"terser-webpack-plugin": "^5.3.6",
1216
"web-vitals": "^2.1.4",
13-
"itty-router": "^4.0.27",
14-
"lru-cache": "^10.1.0",
15-
"wrangler": "^3.28.0",
16-
"ajv": "^8.12.0",
17-
"ajv-keywords": "^5.1.0",
18-
"terser-webpack-plugin": "^5.3.6"
17+
"wrangler": "^3.28.0"
1918
},
2019
"devDependencies": {
21-
"@types/react": "^18.2.48",
22-
"@types/react-dom": "^18.2.18",
23-
"@types/node": "^16.18.70",
2420
"@cloudflare/workers-types": "^4.20240208.0",
25-
"typescript": "^4.9.5",
26-
"wrangler": "^3.28.0",
2721
"@testing-library/jest-dom": "^5.17.0",
2822
"@testing-library/react": "^13.4.0",
29-
"@testing-library/user-event": "^13.5.0"
23+
"@testing-library/user-event": "^13.5.0",
24+
"@types/node": "^16.18.70",
25+
"@types/react": "^18.2.48",
26+
"@types/react-dom": "^18.2.18",
27+
"ajv": "8.17.1",
28+
"typescript": "^4.9.5",
29+
"wrangler": "^3.28.0"
3030
},
3131
"scripts": {
3232
"start": "react-scripts start",
@@ -49,4 +49,4 @@
4949
"last 1 firefox version",
5050
"last 1 safari version"
5151
]
52-
}
52+
}

postcss.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)