-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
44 lines (35 loc) · 2.09 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Since the ".env" file is gitignored, you can use the ".env.example" file to
# build a new ".env" file when you clone the repo. Keep this file up-to-date
# when you add new variables to `.env`.
# This file will be committed to version control, so make sure not to have any
# secrets in it. If you are cloning this repo, create a copy of this file named
# ".env" and populate it with your secrets.
# When adding additional environment variables, the schema in "/srv/env.mjs"
# should be updated accordingly.
# Every service here has a free tier
# Go to this link https://developer.spotify.com/dashboard click create app
# and get your client id and secret, remember to add your spotify email to the
# list of users
SPOTIFY_CLIENT_ID="d3fasfa00fasf74d3594242342699557daa"
SPOTIFY_CLIENT_SECRET="14ee43ebb70d4daa24912d46cda531f58b"
# Go to this link https://console.upstash.com/ click create database and get the
# variables bellow, reddiss:// for tsl protection
REDIS_URL="rediss://default:92ccbff9e5ce4606a76e4c0db256d9f9@us1-willing-antelope-40446.upstash.io:40446"
UPSTASH_REDIS_REST_URL='https://us1-willing-antelope-40446.upstash.io'
UPSTASH_REDIS_REST_TOKEN='AZN6ASQgZGNhYmNiYmItNWUwNS00ODM3LWEwOWEtMTQzM2I5OTYxOTlkYjAwZmIxMjdjNWUwNGFkMzg4NjgxNGE1MjQyMjk5YjA'
# Follow this instructions:
# https://scribehow.com/shared/Add_clerk_spotify_OAuth__eyhv3LhxTrKkN-5VAf-coA
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY="pk_test_ZmxlZXQtb3afaf33GTI4LmNsgsgRT3bnRzLmRldiQ"
CLERK_SECRET_KEY="sk_test_yFGGx5fahfGGa2i1lhWTerqwrwW9r3rh33tSjKZm4bm"
CLERK_REDIRECT_URI="https://fleet-oriole-28.clerk.accounts.dev/v1/oauth_callback"
NEXT_PUBLIC_CLERK_SIGN_IN_URL="/auth/sign-in"
NEXT_PUBLIC_CLERK_SIGN_UP_URL="/auth/sign-up"
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL="/"
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL="/"
# Go to https://genius.com/developers create an app and get the following variables
GENIUS_CLIENT_SECRET = 'sHQmrHo8-3pfq8AXE26LwsAs1reGMGiQePDQIA6_2zknTXqODZM0rWCUhMU9hpjO8NcQCTqRPGXXDG9PQSou7g'
GENIUS_ACCESS_TOKEN = '8n2gkk5pLSbOHfVXctNnK1rnAAYs6iVz8_XrCY5grtdIYCGUu0GIBmKpdhxdMezm'
# OPTIONAL
ANALYZE="false"
PORT="3000"
SKIP_ENV_VALIDATION="false"