Configuration
Custom by edit the configration
There are two main places to edit the app configuration: /configs
folder and in .env
file.
Configuration folder /configs
Most of your site configs should be here.
-
/configs/auth
for authentication. -
/configs/menus
for all menu items of the app. -
/configs/pricing
for Pricing block. -
/configs/landing
for content of other landing blocks. -
/configs/mics
for other configs.
Let open /configs
folder and check it out.
Environment variables .env
Use mostly for secret keys or dynamic variables.
You can access these environment variables in code like process.env.ADMIN_EMAILS
Accessing environment variables in
.env
file usingprocess.env
only works for Server components
Start by duplicating from .env.sample
into .env
and filling them out:
.env
is already included in.gitignore
file, that should not commit/push into git repo