diff --git a/README.md b/README.md index c489ba5..285706b 100644 --- a/README.md +++ b/README.md @@ -4,39 +4,39 @@ Application Flask qui reçoit différents types de documents et retourne un comp ## Obtenir une sauvegarde des données de son profil LinkedIn -![](tuto/obtenir_sauvegarde_donnees.png) +![](templates/tuto/obtenir_sauvegarde_donnees.png) ## Télécharger depuis le courriel -![](tuto/courriel_telecharger.png) +![](templates/tuto/courriel_telecharger.png) ## Extraire les fichiers requis du zip Trouver et ouvrir le fichier zip -![](tuto/fichier-zip.png) +![](templates/tuto/fichier-zip.png) Extraire les deux fichiers suivants: - Comments.csv - Shares.csv -![](tuto/fichier-zip-choix.png) +![](templates/tuto/fichier-zip-choix.png) ## Démo de l'application Ouvrir l'application -![](tuto/app_001_debut.png) +![](templates/tuto/app_001_debut.png) Sélectionner le type de fichier -![](tuto/app_002_choix.png) +![](templates/tuto/app_002_choix.png) Sélectionner le fichier et cliquer sur Envoyer -![](tuto/app_003_envoyer.png) +![](templates/tuto/app_003_envoyer.png) On obtient un tableau de fréquence des emojis dans le fichier sélectionné -![](tuto/app_004_emoji_table.png) \ No newline at end of file +![](templates/tuto/app_004_emoji_table.png) \ No newline at end of file diff --git a/app.py b/app.py index a295f07..60a0fe1 100644 --- a/app.py +++ b/app.py @@ -6,6 +6,9 @@ import sys app = Flask(__name__) +@app.route('//') +def render_static(page_name): + return render_template('%s.html' % page_name) @app.route('/linkedin', methods=['GET', 'POST']) def upload_file(): diff --git a/build.sh b/build.sh index e47ab72..c95546e 100644 --- a/build.sh +++ b/build.sh @@ -1,4 +1,3 @@ #!/bin/bash docker image build --tag docker-registry.dev.jevalide.ca/emoji-flask-app:latest . -docker push docker-registry.dev.jevalide.ca/emoji-flask-app:latest \ No newline at end of file diff --git a/push.sh b/push.sh new file mode 100644 index 0000000..9f2c6af --- /dev/null +++ b/push.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +docker push docker-registry.dev.jevalide.ca/emoji-flask-app:latest \ No newline at end of file diff --git a/run.sh b/run.sh index 0768430..eb1a83a 100644 --- a/run.sh +++ b/run.sh @@ -1 +1,3 @@ -docker run -d -p 5000:5000 --name "emoji-flask-app" emoji-flask-app \ No newline at end of file +#!/bin/bash + +docker run -d -p 5000:5000 --name "emoji-flask-app" docker-registry.dev.jevalide.ca/emoji-flask-app:latest \ No newline at end of file diff --git a/templates/linkedin.html b/templates/linkedin.html index 3b94140..898e6d5 100644 --- a/templates/linkedin.html +++ b/templates/linkedin.html @@ -3,6 +3,11 @@ Emoji Count - Upload + +Manuel + +

+
+ \ No newline at end of file diff --git a/templates/manuel.html b/templates/manuel.html new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/templates/manuel.html @@ -0,0 +1 @@ + diff --git a/tuto/app_001_debut.png b/templates/tuto/app_001_debut.png similarity index 100% rename from tuto/app_001_debut.png rename to templates/tuto/app_001_debut.png diff --git a/tuto/app_002_choix.png b/templates/tuto/app_002_choix.png similarity index 100% rename from tuto/app_002_choix.png rename to templates/tuto/app_002_choix.png diff --git a/tuto/app_003_envoyer.png b/templates/tuto/app_003_envoyer.png similarity index 100% rename from tuto/app_003_envoyer.png rename to templates/tuto/app_003_envoyer.png diff --git a/tuto/app_004_emoji_table.png b/templates/tuto/app_004_emoji_table.png similarity index 100% rename from tuto/app_004_emoji_table.png rename to templates/tuto/app_004_emoji_table.png diff --git a/tuto/courriel_telecharger.png b/templates/tuto/courriel_telecharger.png similarity index 100% rename from tuto/courriel_telecharger.png rename to templates/tuto/courriel_telecharger.png diff --git a/tuto/fichier-zip-choix.png b/templates/tuto/fichier-zip-choix.png similarity index 100% rename from tuto/fichier-zip-choix.png rename to templates/tuto/fichier-zip-choix.png diff --git a/tuto/fichier-zip.png b/templates/tuto/fichier-zip.png similarity index 100% rename from tuto/fichier-zip.png rename to templates/tuto/fichier-zip.png diff --git a/tuto/obtenir_sauvegarde_donnees.png b/templates/tuto/obtenir_sauvegarde_donnees.png similarity index 100% rename from tuto/obtenir_sauvegarde_donnees.png rename to templates/tuto/obtenir_sauvegarde_donnees.png