Last active
May 18, 2023 21:22
-
-
Save bensonmacharia/8fbb4d17313016ac0eaff6ad577b336d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// replace values inside <<>> with your custom values | |
# Database credentials | |
DB_HOST="localhost" | |
DB_DRIVER=mysql | |
DB_USER="<<DB_USER>>" | |
DB_PASSWORD="<<DB_PASSWORD>>" | |
DB_NAME="jwt_go_rbac" | |
DB_PORT="3306" | |
# Default Admin User | |
ADMIN_USERNAME="<<ADMIN_USERNAME>>" | |
ADMIN_EMAIL="<<ADMIN_EMAIL>>" | |
ADMIN_PASSWORD="<<ADMIN_PASSWORD>>" | |
# Authentication credentials | |
TOKEN_TTL="1800" | |
JWT_PRIVATE_KEY="<<JWT_KEY>>" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment