1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 19:33:07 +01:00
freescout/.env.example

31 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-11-08 09:17:03 +01:00
####################################################################################################
## If you want to use web installer **DO NOT** create `.env` file manually.
## If `.env` file exists in the root of your app, web installer won't run.
##
## Every time you are making changes in .env file, in order changes to take an effect you need to run:
## php artisan freescout:clear-cache
#####################################################################################################
2018-10-23 14:55:39 +02:00
# Application URL
2018-08-02 18:17:13 +02:00
APP_URL=https://example.com
2018-08-23 14:29:45 +02:00
2018-10-23 14:55:39 +02:00
# Use HTTP protocol and redirect to HTTPS
2018-10-22 15:02:33 +02:00
#APP_FORCE_HTTPS=true
2018-08-23 14:29:45 +02:00
2018-10-23 14:55:39 +02:00
# Timezones: https://github.com/freescout-helpdesk/freescout/wiki/PHP-Timezones
# Comment it to use default timezone from php.ini
2018-09-25 07:55:20 +02:00
#APP_TIMEZONE=Europe/London
2018-06-22 19:44:21 +02:00
DB_CONNECTION=mysql
2018-08-02 18:17:13 +02:00
DB_HOST=localhost
2018-06-22 19:44:21 +02:00
DB_PORT=3306
2018-11-18 11:20:51 +01:00
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
2018-06-22 19:44:21 +02:00
2018-10-22 15:02:33 +02:00
# Run the following console command to generate the key: php artisan key:generate
# Otherwise application will show the following error: "Whoops, looks like something went wrong"
APP_KEY=
2018-09-11 09:56:31 +02:00
2018-10-22 15:02:33 +02:00
# Uncomment to see errors in your browser, don't forget to comment it back when debugging finished
#APP_DEBUG=true