-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
c67c6e0
commit 910f294
Showing
10 changed files
with
30 additions
and
16 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
File renamed without changes.
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 |
---|---|---|
|
@@ -101,9 +101,9 @@ For each variable, we'll try to provide a sensible example value to help you con | |
| `DATABASE_POOL_PRE_PING` | Whether to always issue a query before returning a database connection to make sure it's alive. [Read more](https://docs.sqlalchemy.org/en/14/core/pooling.html#disconnect-handling-pessimistic). | False | | | | ||
| `DATABASE_URL` | Full database connection string, useful for some cloud providers. It'll take precedence over the single parameters above. | | | | | ||
|
||
More details about how to setup a database in the dedicated section. | ||
More details about how to configure a database in the dedicated section. | ||
|
||
[Setup database](./deployment/setup-database.md){ .md-button } | ||
[Configure database](./configuration/database.md){ .md-button } | ||
{: .buttons } | ||
|
||
### Redis | ||
|
@@ -123,9 +123,9 @@ We use a Redis instance to manage background jobs (send emails, heavy computatio | |
| `DEFAULT_FROM_EMAIL` | Default transactional emails sender email address | [email protected] | | [email protected] | | ||
| `DEFAULT_FROM_NAME` | Default transactional emails sender name | Fief | | Bretagne | | ||
|
||
More details about how to setup an email provider in the dedicated section. | ||
More details about how to configure an email provider in the dedicated section. | ||
|
||
[Setup email provider](./deployment/setup-email-provider.md){ .md-button } | ||
[Configure email provider](./configuration/email-provider.md){ .md-button } | ||
{: .buttons } | ||
|
||
### Webhooks | ||
|
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 +1,14 @@ | ||
# TODO | ||
# Self-hosting | ||
|
||
Fief is a platform that you host for free on your own infrastructure. | ||
|
||
In [Getting started](../getting-started/local-instance.md), we show you a way to easily start your instance locally. However, for production usage, we highly recommend you to perform a complete setup. We provide guides and blueprints to get you started on various **hosting technologies** and **cloud platforms**. | ||
|
||
|
||
[Docker Compose](./deployment/docker-compose.md){ .md-button } | ||
[Render](./deployment/render.md){ .md-button } | ||
{: .buttons } | ||
|
||
## Not sure ? 🤔 | ||
|
||
If you're not sure about the way to go, ask us on the [GitHub Discussions](https://github.com/orgs/fief-dev/discussions) forum. We're here to help! |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ FIEF_DOMAIN=fief.mydomain.com | |
FIEF_MAIN_USER_EMAIL=[email protected] | ||
FIEF_MAIN_USER_PASSWORD=XXX | ||
|
||
# Read more: https://docs.fief.dev/self-hosting/deployment/setup-database/ | ||
# Read more: https://docs.fief.dev/self-hosting/configuration/database/ | ||
DATABASE_TYPE=POSTGRESQL | ||
DATABASE_HOST=postgres | ||
DATABASE_PORT=5432 | ||
|
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