Skip to content

Commit 2435815

Browse files
authored
Merge pull request #5 from 7357-2022/testing
Testing
2 parents 5fbfa76 + 6e0f281 commit 2435815

File tree

2 files changed

+411
-0
lines changed

2 files changed

+411
-0
lines changed

conf/.env.example

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This file, when named as ".env" in the root of your BookStack install
2+
# folder, is used for the core configuration of the application.
3+
# By default this file contains the most common required options but
4+
# a full list of options can be found in the '.env.example.complete' file.
5+
6+
# NOTE: If any of your values contain a space or a hash you will need to
7+
# wrap the entire value in quotes. (eg. MAIL_FROM_NAME="BookStack Mailer")
8+
9+
# Application key
10+
# Used for encryption where needed.
11+
# Run `php artisan key:generate` to generate a valid key.
12+
APP_KEY=SomeRandomString
13+
14+
# Application URL
15+
# This must be the root URL that you want to host BookStack on.
16+
# All URLs in BookStack will be generated using this value
17+
# to ensure URLs generated are consistent and secure.
18+
# If you change this in the future you may need to run a command
19+
# to update stored URLs in the database. Command example:
20+
# php artisan bookstack:update-url https://old.example.com https://new.example.com
21+
APP_URL=https://example.com
22+
23+
# Database details
24+
DB_HOST=localhost
25+
DB_DATABASE=database_database
26+
DB_USERNAME=database_username
27+
DB_PASSWORD=database_user_password
28+
29+
# Mail system to use
30+
# Can be 'smtp' or 'sendmail'
31+
MAIL_DRIVER=smtp
32+
33+
# Mail sender details
34+
MAIL_FROM_NAME="BookStack"
35+
MAIL_FROM=bookstack@example.com
36+
37+
# SMTP mail options
38+
# These settings can be checked using the "Send a Test Email"
39+
# feature found in the "Settings > Maintenance" area of the system.
40+
MAIL_HOST=localhost
41+
MAIL_PORT=1025
42+
MAIL_USERNAME=null
43+
MAIL_PASSWORD=null
44+
MAIL_ENCRYPTION=null

0 commit comments

Comments
 (0)