Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 550 Bytes

README.md

File metadata and controls

33 lines (25 loc) · 550 Bytes

Etherna CMS

Setup

mv .env.example .env

Change the db settings in .env file. You can use postgres, mysql or sqlite:

DB_CLIENT="pg"
DB_HOST="127.0.0.1"
DB_PORT="5432"
DB_DATABASE="etherna"
DB_USER="root"
DB_PASSWORD="root"
DB_SSL="false"

Change the email settings in .env file. You can use a custom sendgrid api key:

EMAIL_FROM="[email protected]"
EMAIL_SMTP_PASSWORD="SG.xxxxxxxxxxxxxx"

Change the bootstrap user in .env file (optional):

ADMIN_EMAIL="[email protected]"
ADMIN_PASSWORD="admin"