-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
26 lines (19 loc) · 1.04 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
# The environment the application is running in (e.g., 'dev' for development, 'prod' for production)
APP_ENV="dev"
# The title of the application, can be used in templates or headers
APP_TITLE="partez"
# Path to the SQL file or directory with multiple files for database migrations
APP_DUMP_SQL="/migrations"
# Path to the controllers directory in the application
APP_CONTROLLERS="/src/Controllers"
# Path to the views directory, typically used for the front-end templates (like Twig)
APP_VIEWS="/views/pages"
# Database connection parameters
D_HOST="localhost" # Database host, usually 'localhost' for local development
D_USER="root" # Database user, 'root' is common for local development
D_PWD="" # Database password, empty for some local environments (e.g., MySQL)
D_NAME="partez" # Name of the database to connect to
# Allowed HTTP methods for the application (CORS headers, API methods, etc.)
ALLOW_METHODS="GET, POST, PUT, DELETE, OPTIONS"
# Salt used for hashing or password encryption
SALT="12"