1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/FastAPI_ynh.git synced 2024-09-03 18:36:00 +02:00

fix path to custom code

This commit is contained in:
leonard 2023-12-01 15:26:50 +01:00
parent c7c99cfd4e
commit 34b79ba3c2
3 changed files with 4 additions and 4 deletions

View file

@ -1,3 +1,3 @@
To customize the FastAPI app, you have to put your code in `__DATA_DIR__`
To customize the FastAPI app, you have to put your code in `__DATA_DIR__`/FastAPIAppFolder/
Your code must have a __init__.py file and the FastAPI object must be named 'app'
Your code must have a '__init__'.py file and the FastAPI object must be named 'app'

View file

@ -1,3 +1,3 @@
Pour personnaliser l'application FastAPI, il faut mettre votre code dans `__DATA_DIR__`
Pour personnaliser l'application FastAPI, il faut mettre votre code dans `__DATA_DIR__`/FastAPIAppFolder/
Votre code doit contenir un fichier __init__.py et l'objet FastAPI doit s'appeler 'app'

View file

@ -1,4 +1,4 @@
Congrats, the application is installed.
You can now put your FastAPI application's code in the folder `__DATA_DIR__`
You can now put your FastAPI application's code in the folder `__DATA_DIR__`/FastAPIAppFolder/
Your application must contain a __init__.py file and the FastAPI object must be named 'app'