From 663cb57907d50cda95e7d891773f53c4a7988edf Mon Sep 17 00:00:00 2001 From: raja Date: Sun, 22 Sep 2024 13:38:12 +0300 Subject: [PATCH] update env template --- .env.example | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.env.example b/.env.example index c7e9c09..fcf83aa 100644 --- a/.env.example +++ b/.env.example @@ -1 +1,19 @@ -# Rename this file to .env.local +# this file serves as a template for the environment variables required by the application. +# copy this file to `.env` and fill in the appropriate values for your environment. +# never share the `.env` file as it may contain sensitive information. + +# application configuration +APP_ENV=development # runtime environment (e.g., development, production) +APP_DEBUG=true # enable debug mode (true or false) +APP_URL=http://localhost:3000 # base url of the application + +# api keys +API_KEY=my_api_key # api key for the external service +API_SECRET=my_api_secret # api secret for the external service + +# database +DB_HOST=localhost # address of the database server +DB_PORT=5432 # port for database connection +DB_NAME=my_database # name of the database +DB_USER=my_user # database username +DB_PASSWORD=my_password # database password