-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.dist
36 lines (27 loc) · 1.13 KB
/
.env.dist
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
# This is an example .env file. Create a file called `.env` in the same
# directory as this file. Fill in the contents of your .env file by following
# this file's example.
# Lines preceded with # are comments.
# User password used to access your database.
DATABASE_PASSWORD=mypassword
# Secret key for Django cryptography.
# Generate a SECRET_KEY by activating the project's Python environment,
# typing `python` to enter a Python shell, and typing this:
# from django.core.management.utils import get_random_secret_key
# print(get_random_secret_key())
SECRET_KEY=9va(h$&30fw9f$@3#%saqtevhrdgn_*=^@1!x0qn(gwe96)9=q
# OPTIONAL configuration below. If unspecified, default values will be used.
# See the env() calls in the config/settings files for default values.
# Name of your database.
DATABASE_NAME='mydbname'
# Username used to access your database.
DATABASE_USER='mydbusername'
# URL of your database server.
DATABASE_HOST='mydbserver.org'
# Database port for your database server.
DATABASE_PORT='5432'
# PRODUCTION configuration below.
# Address to host the website.
SITE_HOST='mywebsite.org'
# Log file path.
LOG_PATH='/var/log/django.log'