-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from YunoHost-Apps/0.4.0-alpha-4
Upgrade to 0.4.0-alpha-4
- Loading branch information
Showing
10 changed files
with
57 additions
and
114 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
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 |
---|---|---|
@@ -1,25 +1,47 @@ | ||
# The address of the database | ||
# (replace USER, PASSWORD, PORT and DATABASE_NAME with your values) | ||
# | ||
# If you are using SQlite, use the path of the database file (`plume.db` for instance) | ||
DATABASE_URL=postgres://__DB_NAME__:__DB_PWD__@localhost:5432/__DB_NAME__ | ||
# This file contains your instance configuration | ||
# Some documentation about these variables is available here: | ||
# https://docs.joinplu.me/environment/ | ||
|
||
## GENERAL SETTINGS ## | ||
|
||
# For PostgreSQL: migrations/postgres | ||
# The directory containing database migrations | ||
# For Postgres: migrations/postgres | ||
# For SQlite: migrations/sqlite | ||
MIGRATION_DIRECTORY=migrations/postgres | ||
|
||
# The domain on which your instance will be available | ||
BASE_URL=__DOMAIN__ | ||
# The URL of your database (or its path for SQlite databases) | ||
DATABASE_URL=postgres://__DB_NAME__:__DB_PWD__@localhost:5432/__DB_NAME__ | ||
|
||
ROCKET_PORT=__PORT__ | ||
ROCKET_ADDRESS=127.0.0.1 | ||
# The domain of your instance | ||
BASE_URL=__DOMAIN__ | ||
|
||
# Secret key used for private cookies and CSRF protection | ||
# The secret key for private cookies and CSRF protection | ||
# You can generate one with `openssl rand -base64 32` | ||
ROCKET_SECRET_KEY=__SECRET_KEY__ | ||
|
||
# Mail settings | ||
# Port and address which Plume will use | ||
ROCKET_PORT=__PORT__ | ||
ROCKET_ADDRESS=127.0.0.1 | ||
|
||
## MAIL CONFIG ## | ||
MAIL_SERVER=localhost | ||
MAIL_ADDRESS=no-reply@__DOMAIN__ | ||
#MAIL_USER=example | ||
#MAIL_PASSWORD=123456 | ||
MAIL_HELO_NAME=__DOMAIN__ | ||
MAIL_HELO_NAME=no-reply@__DOMAIN__ | ||
|
||
## ADVANCED OPTIONS ## | ||
#MEDIA_UPLOAD_DIRECTORY=static/media | ||
#SEARCH_INDEX=search_index | ||
|
||
# Sample logo configuration | ||
#PLUME_LOGO=icons/trwnh/paragraphs/plumeParagraphs.svg | ||
#PLUME_LOGO_FAVICON=icons/trwnh/paragraphs/plumeParagraphs32.png | ||
#PLUME_LOGO_48=icons/trwnh/paragraphs/plumeParagraphs48.png | ||
#PLUME_LOGO_72=icons/trwnh/paragraphs/plumeParagraphs72.png | ||
#PLUME_LOGO_96=icons/trwnh/paragraphs/plumeParagraphs96.png | ||
#PLUME_LOGO_144=icons/trwnh/paragraphs/plumeParagraphs144.png | ||
#PLUME_LOGO_160=icons/trwnh/paragraphs/plumeParagraphs160.png | ||
#PLUME_LOGO_192=icons/trwnh/paragraphs/plumeParagraphs192.png | ||
#PLUME_LOGO_256=icons/trwnh/paragraphs/plumeParagraphs256.png | ||
#PLUME_LOGO_512=icons/trwnh/paragraphs/plumeParagraphs512.png |
This file was deleted.
Oops, something went wrong.
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
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
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