Skip to content

Commit

Permalink
Merge pull request #5 from brandonsaldan/cloudflare
Browse files Browse the repository at this point in the history
feat: 0.1.0 release
  • Loading branch information
brandonsaldan authored Nov 9, 2024
2 parents 0a9a630 + 4bf342b commit dbb2063
Show file tree
Hide file tree
Showing 24 changed files with 1,194 additions and 185 deletions.
15 changes: 15 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Supabase
NEXT_PUBLIC_SUPABASE_URL=your_supabase_url
SUPABASE_ANON_KEY=your_anon_key

# Spotify
NEXT_PUBLIC_SPOTIFY_CLIENT_ID=your_client_id
SPOTIFY_CLIENT_SECRET=your_client_secret
NEXT_PUBLIC_REDIRECT_URI=your_redirect_uri

# Encryption (32 bytes hex for key, 16 bytes hex for IV)
ENCRYPTION_KEY=your_32_byte_hex_key
ENCRYPTION_IV=your_16_byte_hex_key

# Development Environment
NODE_ENV=development
52 changes: 49 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,50 @@
.next
node_modules
# Dependencies
/node_modules
/.pnp
.pnp.js

# Testing
/coverage

# Next.js
/.next/
/out/

# Production
/build

# Misc
.DS_Store
.env.local
*.pem

# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Local env files
.env*.local
.env
.env.development
.env.test
.env.production

# Vercel
.vercel

# Cloudflare
.wrangler/
.cloudflare/

# IDE
.vscode/
.idea/
*.swp
*.swo

# Local Development
ca.crt
ca.key
cert.crt
cert.key
server.js
Loading

0 comments on commit dbb2063

Please sign in to comment.