-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
80 lines (73 loc) · 2.53 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#------------
# Application Configuration
#
# Please keep the secret token that you specify here as secret as possible
# since that will be used as a secret signature for the application.
# It is recommended to use a random alphanumeric 32 to 64 character secret.
#------------
APP_SECRET=
APP_SIGNATURE=
VITE_APP_NAME=
VITE_FLORA_BANNER=true
#-----------
# Administrator Credentials
#
# Please keep the secret token that you specify here as secret as possible
# since that will be used as a password to login into your creator dashboard.
# It is recommended to use a random alphanumeric 32 to 64 character secret.
#----------
VITE_DISPLAY_NAME=
ADMIN_NAME=
ADMIN_SECRET=
#-----------
# Database Configuration
#----------
MONGO_URI=
#-----------
# SEO Meta Information
#
# These will be displayed on the SEO Opengraph tags to show up in websites
# embeds such as Discord and Google. This will show up for all pages except
# for /posts/:id and the creator dashboard routes.
#-----------
VITE_SEO_TITLE=
VITE_SEO_IMAGE=
VITE_SEO_COLOR=#fff
VITE_SEO_DESCRIPTION=
VITE_FAVICON=
#-----------
# Additional features
#
# These are features that are intended to make life more easier for the
# reader such as dark mode and back to the top. You can enable these features
# or disable them here.
#-----------
# Enable this to turn on Flora's dark mode which looks decent enough
# but it's not the best of the best.
#
# VITE_DARK_MODE=true
#
# You can disable back to the top scrolling here, by default, this is enabled
# since who doesn't want back to the top.
# VITE_BACK_TO_TOP=true
#
# Enable this to disable the ability to select code blocks, this won't prevent
# people from using inspect element but it will prevent immediate copy pasting.
# VITE_DISALLOW_SELECT_CODEBLOCKS=false
#
# You can disable the little end credits at the bottom of posts by setting this
# to "false", by default, this is enabled since it looks neater.
# VITE_SHOW_POST_ENDING=false
# You can enable focus mode by default here to enable black bars on the massive
# whitespaces at the sides which gives off a cinematic and more focused view of
# what the reader is reading.
#
# Users are able to override this option through their settings.
# VITE_FOCUS_MODE=true
# Sveltekit's Node Adapter recommends adding a ORIGIN variable to help Sveltekit
# identify what the origin is since HTTP can be unreliable.
#
# This is your site's domain if you are using a domain like https://blog.mihou.pw
#
# https://github.com/sveltejs/kit/tree/master/packages/adapter-node#origin-protocol_header-and-host_header
# ORIGIN=