-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.dist
38 lines (31 loc) · 1.29 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
37
38
#!/usr/bin/env bash
# This file is a "template" of which env vars need to be defined for your application
# Copy this file to .env file for development, create environment variables when deploying to production
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
HTTP_PORT=39876
MYSQL_PORT=39877
MAILGUN_DOMAIN=<your domain>
MAILGUN_API_KEY=<your key>
MAILGUN_SENDER=<your sender>
DEV_EMAIL_RECIPIENT=<dev email to send all emails to in dev (should be enabled in mailgun sandbox if using sandbox)>
STRIPE_PUBLISHABLE_KEY=<your stripe publishable key>
STRIPE_SECRET_KEY=<your stripe secret key>
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=2036e7567f62f3985943187543030007
###< symfony/framework-bundle ###
###> doctrine/doctrine-bundle ###
MYSQL_ROOT_PASSWORD=FWDa67qpZFku7E2X
MYSQL_USER=hike
MYSQL_PASSWORD=pfj95khzMwVWDPgv
MYSQL_DATABASE=hike
###< doctrine/doctrine-bundle ###
###> nelmio/cors-bundle ###
CORS_ALLOW_ORIGIN=^https?://localhost:?[0-9]*$
###< nelmio/cors-bundle ###
###> lexik/jwt-authentication-bundle ###
# Key paths should be relative to the project directory
JWT_PRIVATE_KEY_PATH=ssl/jwt/private.pem
JWT_PUBLIC_KEY_PATH=ssl/jwt/public.pem
JWT_PASSPHRASE=91818ea27d0420b9e7c5c8f62e723f99
###< lexik/jwt-authentication-bundle ###