-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
24 lines (19 loc) · 835 Bytes
/
env.example
File metadata and controls
24 lines (19 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
# This include-script is only to be sourced (.) by other shell scripts. The
# initial #!/bin/sh is included to force VS Code to correctly perform syntax
# detection - otherwise it incorrectly detects Python and attempts to make
# invalid recommendations.
DJANGO_SETTINGS_MODULE="team_groove.settings.development"
# You can generate a local SECRET_KEY using the Python REPL
# First, start a Python REPL running inside the virtual environment
# > poetry run python
# Now the Python REPL is running import the Django module:
# >>> from django.core.management import utils
# And then generate a new key
# >>> print(utils.get_random_secret_key())
# When you've finished, you can exit the REPL.
# >>> exit()
SECRET_KEY=""
SPOTIPY_CLIENT_ID=""
SPOTIPY_CLIENT_SECRET=""
SPOTIPY_REDIRECT_URI="http://127.0.0.1:8000/grooveboard"