Skip to content

Commit 8cf87e8

Browse files
committed
Adding run python file to simplify the execution inside CI
1 parent 6d8bf78 commit 8cf87e8

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

run_app.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import sys
2+
import os
3+
4+
# Ajoute le dossier src au chemin de recherche de Python
5+
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
6+
7+
# Lance l'application proprement
8+
from bulkfolder.ui.main import main
9+
if __name__ == "__main__":
10+
main()

0 commit comments

Comments
 (0)