-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🌐 Add French translation for docs/fr/docs/deployment/index.md
#3689
Merged
tiangolo
merged 10 commits into
fastapi:master
from
rjNemo:feature/translation-fr-deployment-intro
Aug 18, 2022
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
053651d
docs(fr): add deployment index page
567c354
docs(fr): add translation
940e286
docs(fr): fix toc
37ee682
docs(fr): fix toc
710a203
Merge branch 'master' into feature/translation-fr-deployment-intro
76014e8
Merge branch 'master' into feature/translation-fr-deployment-intro
rjNemo 5b147b1
Merge branch 'master' into feature/translation-fr-deployment-intro
rjNemo a19012d
translation: keep up with recent changes
f991d34
🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
pre-commit-ci[bot] 3a54345
Update docs/fr/docs/deployment/index.md
rjNemo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Déploiement - Intro | ||
|
||
Le déploiement d'une application **FastAPI** est relativement simple. | ||
|
||
## Que signifie le déploiement | ||
|
||
**Déployer** une application signifie effectuer les étapes nécessaires pour la rendre **disponible pour les | ||
utilisateurs**. | ||
|
||
Pour une **API Web**, cela implique normalement de la placer sur une **machine distante**, avec un **programme serveur** | ||
qui offre de bonnes performances, une bonne stabilité, _etc._, afin que vos **utilisateurs** puissent **accéder** à | ||
l'application efficacement et sans interruption ni problème. | ||
|
||
Ceci contraste avec les étapes de **développement**, où vous êtes constamment en train de modifier le code, de le casser | ||
et de le réparer, d'arrêter et de redémarrer le serveur de développement, _etc._ | ||
|
||
## Stratégies de déploiement | ||
|
||
Il existe plusieurs façons de procéder, en fonction de votre cas d'utilisation spécifique et des outils que vous | ||
utilisez. | ||
|
||
Vous pouvez **déployer un serveur** vous-même en utilisant une combinaison d'outils, vous pouvez utiliser un **service | ||
cloud** qui fait une partie du travail pour vous, ou encore d'autres options possibles. | ||
|
||
Je vais vous montrer certains des principaux concepts que vous devriez probablement avoir à l'esprit lors du déploiement | ||
d'une application **FastAPI** (bien que la plupart de ces concepts s'appliquent à tout autre type d'application web). | ||
|
||
Vous verrez plus de détails à avoir en tête et certaines des techniques pour le faire dans les sections suivantes. ✨ |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why
_ect._
instead of justetc.
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I learned that Latin terms should be written in italics.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the info 😃