-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
26 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## LINKACE CONFIGURATION | ||
|
||
## Basic app configuration | ||
# The app key is generated later, please leave it like that | ||
APP_KEY=someRandomStringWith32Characters | ||
|
||
## Configuration of the database connection | ||
## Attention: Those settings are configured during the web setup, please do not modify them now. | ||
# Set the database driver (mysql, pgsql, sqlsrv, sqlite) | ||
DB_CONNECTION=sqlite | ||
# Set the database name (MySQL, Postgres,...) or path (SQLite) here | ||
DB_DATABASE=/app/database/database.sqlite | ||
# Set the host of your database here | ||
DB_HOST=127.0.0.1 | ||
# Set the port of your database here | ||
DB_PORT=3306 | ||
# Set both username and password of the user accessing the database | ||
DB_USERNAME=linkace | ||
# Wrap your password into quotes (") if it contains special characters | ||
DB_PASSWORD=ChangeThisToASecurePassword! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters