From c78f9fbe2213b5eb76634fbb9166ac25d3bd8c31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 23 Aug 2021 22:45:07 +0200 Subject: [PATCH 01/91] chore: add EXPOSE in Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3368348..1bdd21b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,4 +8,6 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . -CMD ["python", "run.py"] +EXPOSE 5555 + +CMD ["python", "run.py"] \ No newline at end of file From 2a866b522261b567e862c6c12b7cbb2da9574e76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 23 Aug 2021 22:51:58 +0200 Subject: [PATCH 02/91] fix: settings.py --- app/setup/settings.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/setup/settings.py b/app/setup/settings.py index 277aa09..6cbdd80 100644 --- a/app/setup/settings.py +++ b/app/setup/settings.py @@ -1,15 +1,15 @@ import os -SECRET_KEY = os.environ.get('SECRET_KEY') -SQLALCHEMY_DATABASE_URI = os.environ.get('SQLALCHEMY_DATABASE_URI') -SQLALCHEMY_TRACK_MODIFICATIONS = os.environ.get('SQLALCHEMY_TRACK_MODIFICATIONS') -ADMIN_USERNAME = os.environ.get('ADMIN_USERNAME') -ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD') +SECRET_KEY = 'mySecretKey' #os.environ.get('SECRET_KEY') +SQLALCHEMY_DATABASE_URI = 'sqlite:///db.sqlite3' #os.environ.get('SQLALCHEMY_DATABASE_URI') +SQLALCHEMY_TRACK_MODIFICATIONS = False #os.environ.get('SQLALCHEMY_TRACK_MODIFICATIONS') +ADMIN_USERNAME = 'admin' #os.environ.get('ADMIN_USERNAME') +ADMIN_PASSWORD = 'admin' #os.environ.get('ADMIN_PASSWORD') -MAIL_SERVER = os.environ.get('MAIL_SERVER') -MAIL_PORT = int(os.environ.get('MAIL_PORT')) -MAIL_USERNAME = os.environ.get('MAIL_USERNAME') -MAIL_PASSWORD = os.environ.get('MAIL_PASSWORD') +MAIL_SERVER = 'localhost' # os.environ.get('MAIL_SERVER') +MAIL_PORT = 25 # int(os.environ.get('MAIL_PORT')) +MAIL_USERNAME = 'user' # os.environ.get('MAIL_USERNAME') +MAIL_PASSWORD = 'password' # os.environ.get('MAIL_PASSWORD') MAIL_USE_TLS = False MAIL_USE_SSL = True From 3c7e0aa6f09caa197a60ce8f58709d5a0626e6c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 23 Aug 2021 23:04:00 +0200 Subject: [PATCH 03/91] chore: change texts --- app/client/templates/index.html | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/client/templates/index.html b/app/client/templates/index.html index e28c23e..f6d98d7 100644 --- a/app/client/templates/index.html +++ b/app/client/templates/index.html @@ -46,10 +46,7 @@
Check out
with - by Tomer
- -
Check out my GitHub
+ by Qovery
From ff05f103329fe0dc016f88c4e8e5f5c7aab0f412 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 24 Aug 2021 00:01:57 +0200 Subject: [PATCH 04/91] fake change --- app/client/templates/verify.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/verify.html b/app/client/templates/verify.html index 15becbf..7fc0f9f 100644 --- a/app/client/templates/verify.html +++ b/app/client/templates/verify.html @@ -9,7 +9,7 @@

-

Please check your inbox

+

Please check your inbox x

We've sent a verification code to your email. Please enter it below and click verify.

From 81b41ed0b02c8509d60b7dc7fb7544385f454c5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 24 Aug 2021 15:29:14 +0200 Subject: [PATCH 05/91] test From 8e2526b86f8cb0e7045b24b90704240b902582bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 24 Aug 2021 16:18:15 +0200 Subject: [PATCH 06/91] minor change --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 95ebb28..0a28e01 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

ShortMe

+

This is another title

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 6a0025d86ae57b0b41d8bfa4da0887b4c47e8c27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 26 Aug 2021 18:23:52 +0200 Subject: [PATCH 07/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 0a28e01..d51aa02 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

This is another title

+

Hello Community Call Qovery

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 5f10643192fae898469752559a8fe3ad62d068dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 27 Aug 2021 12:20:07 +0200 Subject: [PATCH 08/91] minor --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index d51aa02..8589ad8 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Community Call Qovery

+

Hello World

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From c8fe47df340c8b036ffb59264541caea4dce35b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 27 Aug 2021 14:10:12 +0200 Subject: [PATCH 09/91] minor change --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 8589ad8..f268a3c 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello World

+

Hello David

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 4abdc23774e847aa9d95ae2d5b8070244035c043 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 30 Aug 2021 09:58:01 +0200 Subject: [PATCH 10/91] minor change --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index f268a3c..aa9be52 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello David

+

Hello Iziwork

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 1419febf3d16e99b70d58b63d2acfbb0b2baa983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 30 Aug 2021 22:16:38 +0200 Subject: [PATCH 11/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index aa9be52..f0d21b6 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Iziwork

+

Hello Taj

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 46ce814645ab2b568af5a256e30f7ab37c1ce56a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 31 Aug 2021 15:30:22 +0200 Subject: [PATCH 12/91] title change --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index f0d21b6..7251038 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Taj

+

Hello Tastycloud

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From ace1bcdf17a870ca783781a79b7f113d274a7f4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 31 Aug 2021 18:16:19 +0200 Subject: [PATCH 13/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 7251038..2d87f89 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Tastycloud

+

Hello Qualifi

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From dc86335cb2fee83b3eef8110f4fc9d00725adc06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 1 Sep 2021 14:34:51 +0200 Subject: [PATCH 14/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 2d87f89..a75d19b 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Qualifi

+

Hello Luca

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 8de647583e7abdd9802778c2eb542fe5cbb16b4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 1 Sep 2021 14:57:48 +0200 Subject: [PATCH 15/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index a75d19b..9598adf 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Luca

+

Hello Renaud

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 7c6a69a32a33b32f1d598e93cec0a521850aa721 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 1 Sep 2021 16:22:42 +0200 Subject: [PATCH 16/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 9598adf..67579d1 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Renaud

+

Hello Dorian

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From f268a8981975de337a9e889b6703d4b2cbc9cfc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Sat, 4 Sep 2021 21:47:38 +0200 Subject: [PATCH 17/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 67579d1..8589ad8 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Dorian

+

Hello World

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From c39201461098c33b35e947f94c584d85fa566263 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 7 Sep 2021 11:33:47 +0200 Subject: [PATCH 18/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 8589ad8..371b4bf 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello World

+

Hello Hugues

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From a2f6db1845152c9c619a9d444647375a26b82c92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 7 Sep 2021 15:58:34 +0200 Subject: [PATCH 19/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 371b4bf..fae5204 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Hugues

+

Hello Esteban

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 0f063c43195dfb14a8d4474053c7027f5310e5a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 9 Sep 2021 16:22:55 +0200 Subject: [PATCH 20/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index fae5204..10d5985 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Esteban

+

Hello Chris

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From c040c217a185a3b1f90b2c9cb9ce9289964759e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 14 Sep 2021 14:22:38 +0200 Subject: [PATCH 21/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 10d5985..b8142fc 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Chris

+

Hello Leeway

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 105d30f849b1004735ee71e1ba50201f3d8dea27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 14 Sep 2021 18:17:32 +0200 Subject: [PATCH 22/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index b8142fc..2291a5a 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Leeway

+

Hello Charlie and Brett

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From b37048a9cd12bbc58edef7344118d68ed2224cd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 15 Sep 2021 15:26:11 +0200 Subject: [PATCH 23/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 2291a5a..4f613a1 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Charlie and Brett

+

Hello Baptiste

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 0fa6a154b543083930c53dcc9c9f5af420455148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 1 Oct 2021 09:25:40 +0200 Subject: [PATCH 24/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 4f613a1..da79662 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Baptiste

+

Hello Guillaume

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 5708a99e1c0085eb3b6551c3baf60a68eeca3b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 1 Oct 2021 15:14:27 +0200 Subject: [PATCH 25/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index da79662..b55b717 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Guillaume

+

Hello Anosh

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From d7e5366be96e615037f5973a6606c476120d3731 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 22 Oct 2021 15:27:15 +0200 Subject: [PATCH 26/91] chor: min change --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 1bdd21b..524c92e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . + EXPOSE 5555 CMD ["python", "run.py"] \ No newline at end of file From 279f287339ad7fec50cfff99ad3bef52e68bc98b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 28 Oct 2021 15:12:54 +0200 Subject: [PATCH 27/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index b55b717..bf833fa 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Anosh

+

Hello Andy

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 1c40a7bc3c4ad1b2ff06f272dec4b6c32c8a9b8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 2 Nov 2021 10:32:20 +0400 Subject: [PATCH 28/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index bf833fa..93ff345 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Andy

+

Hello Nishant

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From f4ca843cd35adf955576cf7ca36b7307c2ed69fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 2 Nov 2021 22:34:55 +0400 Subject: [PATCH 29/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 93ff345..c9ac5d5 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Nishant

+

Hello William

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From fe81094867cc0b8badfb81b12472eb073264af98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 3 Nov 2021 19:16:03 +0400 Subject: [PATCH 30/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index c9ac5d5..fa13a7a 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello William

+

Hello Chakib

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From ec28d8c644ec3577b70a9861ec12a6f8cd766509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 16 Nov 2021 18:12:17 +0100 Subject: [PATCH 31/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index fa13a7a..5e86eb1 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Chakib

+

Hello Pierre

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 601112d6cb4133067b5ed5bfab69758eafcc5d55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 18 Nov 2021 18:18:02 +0100 Subject: [PATCH 32/91] chore: title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 5e86eb1..7bf62ce 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Pierre

+

Hello Raphael

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From c40a29cae42b2dd3f386f01fa0dd2fa7af44e727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 24 Nov 2021 16:48:03 +0100 Subject: [PATCH 33/91] chore: title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 7bf62ce..258b5a3 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Raphael

+

Hello Dan

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 1610019992649d06cf53978878a94f59eedd910a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 24 Nov 2021 22:16:09 +0100 Subject: [PATCH 34/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 258b5a3..8589ad8 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Dan

+

Hello World

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From aad574e81a7468fe744c952cb8b563c120d5660c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 26 Nov 2021 16:55:11 +0100 Subject: [PATCH 35/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 8589ad8..f1148a5 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello World

+

Hello Theophile

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 37a4ed74c84aec8d9a34f567752c6583085b2bec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 29 Nov 2021 15:22:46 +0100 Subject: [PATCH 36/91] chore: change title --- Dockerfile | 1 - app/client/templates/base.html | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 524c92e..1bdd21b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,6 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . - EXPOSE 5555 CMD ["python", "run.py"] \ No newline at end of file diff --git a/app/client/templates/base.html b/app/client/templates/base.html index f1148a5..dbc3985 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Theophile

+

Hello Pat

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 7e912e75afac3b4857eff23f401646490326fb20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 1 Dec 2021 12:28:01 +0200 Subject: [PATCH 37/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index dbc3985..71415d6 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Pat

+

Hello Eirik

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 7a799d2f7cb78cd1741c9c4f1daf2d07994b8cee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 3 Dec 2021 10:19:09 +0200 Subject: [PATCH 38/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 71415d6..fbe1b06 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Eirik

+

Hello Nicky

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 706ffd85f5bf85592bbda6514ad675a9f64ac939 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 3 Dec 2021 11:43:58 +0200 Subject: [PATCH 39/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index fbe1b06..ed9ccf1 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Nicky

+

Hello Patrick

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 72b50846bd635266b46bbfe031a1cd7200396ed7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 3 Dec 2021 12:59:25 +0200 Subject: [PATCH 40/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index ed9ccf1..1e9da6e 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Patrick

+

Hello Damien

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 2184aff266e3bb12c11bbb7bb1da1c969a21e57d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 3 Dec 2021 16:03:56 +0200 Subject: [PATCH 41/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 1e9da6e..e3b1ede 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Damien

+

Hello Rayane

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From f6d5ba13c36dd0cd10ae30efaea0b874b3dbe03a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 3 Dec 2021 19:48:34 +0200 Subject: [PATCH 42/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index e3b1ede..fb5906e 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Rayane

+

Hello Teo

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 35fdf1af4656b874ab2f403982f4650f446829d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 13 Dec 2021 10:23:10 +0100 Subject: [PATCH 43/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index fb5906e..0efffe8 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Teo

+

Hello Adrien

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 6ed9476469c8d5160d6498ab0e22d8f8a784c7e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 14 Dec 2021 16:53:57 +0100 Subject: [PATCH 44/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 0efffe8..cb354c5 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Adrien

+

Hello Cyril

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 2740e3e5e24675f364d1d1032be553c29a823b3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 17 Dec 2021 19:22:04 +0100 Subject: [PATCH 45/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index cb354c5..9cd33f8 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Cyril

+

Hello Calvin

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 83b52330f1fc7d842aeede1e05d741c889c4e7a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 17 Dec 2021 22:16:29 +0100 Subject: [PATCH 46/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 9cd33f8..2ff9b6e 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Calvin

+

Hello Josh

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 301b082a4656337f57c9e8395042146832f535a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 20 Dec 2021 10:32:00 +0100 Subject: [PATCH 47/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 2ff9b6e..4422c62 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Josh

+

Hello Alex

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 3745fb77b2ac67f001655061b6b1d66b56b65be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 21 Dec 2021 07:47:23 +0100 Subject: [PATCH 48/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 4422c62..e32d021 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Alex

+

Hello Kiran

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From e85c9b8520f2ef390e6476d3cdf536a0266978cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 21 Dec 2021 17:40:36 +0100 Subject: [PATCH 49/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index e32d021..158ff50 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Kiran

+

Hello Bogdan

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From a5c5fdadcde88e627ef240288602ad7d62da6e75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 22 Dec 2021 19:29:06 +0100 Subject: [PATCH 50/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 158ff50..5a1af02 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Bogdan

+

Hello Bogdan Skuratov

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 7f58ca08c29fa7bee0a3feec1e9d63224a0b936b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 28 Dec 2021 19:27:29 +0100 Subject: [PATCH 51/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 5a1af02..d82a53a 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Bogdan Skuratov

+

Hello Gotab Team

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 32c6344bcd74159b0af2fd0c94852b0a7453beeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 29 Dec 2021 16:01:29 +0100 Subject: [PATCH 52/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index d82a53a..9b61234 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Gotab Team

+

Hello Paul

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From fdeb37db07dabd8303224a6471af349956f84cce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 29 Dec 2021 22:50:42 +0100 Subject: [PATCH 53/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 9b61234..67a5d06 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Paul

+

Hello Stephane

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From fe07000749e4e41a50c9bb4120e89fd8c35be8e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 4 Jan 2022 09:48:36 +0100 Subject: [PATCH 54/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 67a5d06..f8337bb 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Stephane

+

Hello Burin

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From a3d35c32e2eed85a0905f6babf47cb462afaa4b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 4 Jan 2022 10:00:35 +0100 Subject: [PATCH 55/91] chore: change title - this is a new feature --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index f8337bb..73e095f 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Burin

+

Hello Burin - this is a new feature

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From de22964e3a19e5404f1af2ecf2a8faa1bbf658c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 4 Jan 2022 15:33:19 +0100 Subject: [PATCH 56/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 73e095f..9a035bd 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Burin - this is a new feature

+

Hello Andreas

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From d91cd57ce1537366d60a141864a629f419e47d2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 4 Jan 2022 17:21:57 +0100 Subject: [PATCH 57/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 9a035bd..8db1a8c 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Andreas

+

Hello Gaetan

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 244955921fabdde7b2f4c49771203ce6c32b78a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 5 Jan 2022 15:20:28 +0100 Subject: [PATCH 58/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 8db1a8c..6b6b73c 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Gaetan

+

Hello Christophe et Thibault

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 6dbb2761d995adf8654263f6a60e0350b20f6159 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 5 Jan 2022 17:34:48 +0100 Subject: [PATCH 59/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 6b6b73c..d06a877 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Christophe et Thibault

+

Hello James and Tugrul

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 8ece439429167ec6dbd4837239dfb171500f30cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 5 Jan 2022 19:18:13 +0100 Subject: [PATCH 60/91] chore: change title for andrey --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index d06a877..98bfe0c 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello James and Tugrul

+

Hello Andrey

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From aaddc58759a963a9ea2a54c62e4c46b0c83768da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 6 Jan 2022 14:23:34 +0100 Subject: [PATCH 61/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 98bfe0c..48f7ffd 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Andrey

+

Hello Kevin

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From c02026e10a21aed5933cbef108fd376c613e7ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 6 Jan 2022 18:42:05 +0100 Subject: [PATCH 62/91] chore: change title for osmar --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 48f7ffd..9bf7c1c 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Kevin

+

Hello Osmar

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From d102275eb5f226802a0b4634cc8b4616752a27c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 7 Jan 2022 18:24:07 +0100 Subject: [PATCH 63/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 9bf7c1c..a72ccc1 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Osmar

+

Hello James

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From b06405960802df7d96f8544be417374b99cda5f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 11 Jan 2022 15:04:02 +0100 Subject: [PATCH 64/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index a72ccc1..1fc542e 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello James

+

Hello Elvin and Grace

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 24caa25833f344b167800704a6f9748b142729dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 11 Jan 2022 16:16:46 +0100 Subject: [PATCH 65/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 1fc542e..499f979 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Elvin and Grace

+

Hello Benjamin

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 4aac04fdaabd9b7f7c43d55ca523ef8001c9995f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 13 Jan 2022 20:39:19 +0100 Subject: [PATCH 66/91] fix: runtime python --- runtime.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 runtime.txt diff --git a/runtime.txt b/runtime.txt new file mode 100644 index 0000000..59a6441 --- /dev/null +++ b/runtime.txt @@ -0,0 +1 @@ +python-3.7 \ No newline at end of file From e2c9b2de47a344daac2dffcbea5204a70670c69a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 13 Jan 2022 20:41:55 +0100 Subject: [PATCH 67/91] fix python runtime --- runtime.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.txt b/runtime.txt index 59a6441..4a9e573 100644 --- a/runtime.txt +++ b/runtime.txt @@ -1 +1 @@ -python-3.7 \ No newline at end of file +python-3.7.12 \ No newline at end of file From 5b330e2995025e3dae99652c53ca67ec5edc35ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 17 Jan 2022 10:24:27 +0100 Subject: [PATCH 68/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 499f979..8593393 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Benjamin

+

Hello Snehit

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 909263340e5a24b453386030a5d03f0b986ed203 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 18 Jan 2022 15:39:13 +0100 Subject: [PATCH 69/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 8593393..5e86eb1 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Snehit

+

Hello Pierre

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 06229ac0a9bf09d99fdcb617b55d71d843f114a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 19 Jan 2022 13:41:01 +0100 Subject: [PATCH 70/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 5e86eb1..73952f1 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Pierre

+

Hello Etienne de Octo

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 2083f48e077fb235aba681e4c3e5f54dd39daa08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 19 Jan 2022 18:30:05 +0100 Subject: [PATCH 71/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 73952f1..0852edd 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Etienne de Octo

+

Hello Miguel

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 13a5c4572e8bed12db4fdf1d70cbfd7d9d202709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 20 Jan 2022 11:48:57 +0100 Subject: [PATCH 72/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 0852edd..7a82f98 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Miguel

+

Hello Arnaud

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From a53b70c385756e0d8b082ec796ab5844f6858d13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 21 Jan 2022 16:18:48 +0100 Subject: [PATCH 73/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 7a82f98..9a61345 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Arnaud

+

Hello Mehdi

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 0bd44281ae2e45f96795aa1883ef47f00174670c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 21 Jan 2022 18:17:59 +0100 Subject: [PATCH 74/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 9a61345..f1ff77d 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Mehdi

+

Hello Arif

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 19ab529358620b3695150a1951e59b2051170262 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 26 Jan 2022 17:50:15 +0100 Subject: [PATCH 75/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index f1ff77d..2a46518 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Arif

+

Hello Victor

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 52d448ba5d870a7d6ee6971332e64757b8b92772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 27 Jan 2022 14:54:39 +0100 Subject: [PATCH 76/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 2a46518..7758360 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Victor

+

Hello Matthieu

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From ba4f00df8901b2d51a5fca17320fed68037cec44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 31 Jan 2022 12:09:33 +0100 Subject: [PATCH 77/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 7758360..a72ccc1 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Matthieu

+

Hello James

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From cf75d593c8f6f75d6f4982eb27c9755d6e0c0b99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 31 Jan 2022 12:43:29 +0100 Subject: [PATCH 78/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index a72ccc1..499f979 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello James

+

Hello Benjamin

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 1d323d2737c2d8933f525e45b5f46efe95fb8d4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 31 Jan 2022 12:45:07 +0100 Subject: [PATCH 79/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 499f979..caa6cd7 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Benjamin

+

Hello Benjamin de Notiplus

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 19334081beef0357af606062d4ef8182d82ddf73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 2 Feb 2022 09:31:08 +0100 Subject: [PATCH 80/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index caa6cd7..193b636 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Benjamin de Notiplus

+

Hello Benjamin from Important

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From ce6b768f9794d78aa878c2afda5e032a4b411f13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 2 Feb 2022 10:46:43 +0100 Subject: [PATCH 81/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 193b636..0ca0c73 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Benjamin from Important

+

Hello Kevin and Jonathan

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From c5c8119a4b374df6392036ac7ef3240d3d479e13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 2 Feb 2022 19:24:20 +0100 Subject: [PATCH 82/91] chore: change tittle --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 0ca0c73..b2579a4 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Kevin and Jonathan

+

Hello Jay, Bas and Erik

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From e5b9f18cce13db9ab7b18a4a2e6d07ec57738e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 4 Feb 2022 10:27:40 +0100 Subject: [PATCH 83/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index b2579a4..a2b1191 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Jay, Bas and Erik

+

Hello Matteo

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From c479bb464a807ec68527d798ad8c209e408c67f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Fri, 4 Feb 2022 15:36:55 +0100 Subject: [PATCH 84/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index a2b1191..a6dcd1d 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Matteo

+

Hello Philippe

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From aa75fa7841f0ec2afc57e8fb2ca8c2d2081bc8ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 9 Feb 2022 07:42:42 +0100 Subject: [PATCH 85/91] Update base.html --- app/client/templates/base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index a6dcd1d..21fc6b0 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Philippe

+

Hello Q Team

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

@@ -41,4 +41,4 @@

Hello Philippe

- \ No newline at end of file + From 432831dd876daf57a399d0406fc79f236b5f87e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Wed, 9 Feb 2022 11:16:26 +0100 Subject: [PATCH 86/91] Update base.html --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 21fc6b0..46711ee 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Q Team

+

Hello Cedric

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 6b844f9d1cef1a8aefd9e57482ce306a999025a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Mon, 14 Feb 2022 14:21:37 +0100 Subject: [PATCH 87/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 46711ee..73e7f7f 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Cedric

+

Hello William

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From dfd64efcec0113d6222ee34e2fb4d0e4701dff83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Tue, 15 Feb 2022 11:45:38 +0100 Subject: [PATCH 88/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 73e7f7f..b9c9c76 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello William

+

Hello Dmitry

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 72e2b5dc5d21d1eeae959f2d4a07176153fb54f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 17 Feb 2022 10:39:39 +0100 Subject: [PATCH 89/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index b9c9c76..1cca82b 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Dmitry

+

Hello Tim

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 639eedbf3836d9d25be9916f76f98ec779685788 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 17 Feb 2022 13:29:26 +0100 Subject: [PATCH 90/91] change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 1cca82b..3be994a 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Tim

+

Hello Ed and Karlo

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.

From 0abc754a530198eb1d1a646eb6e178c002d3cfa7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Thu, 17 Feb 2022 14:49:53 +0100 Subject: [PATCH 91/91] chore: change title --- app/client/templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/templates/base.html b/app/client/templates/base.html index 3be994a..fc003b0 100644 --- a/app/client/templates/base.html +++ b/app/client/templates/base.html @@ -20,7 +20,7 @@
-

Hello Ed and Karlo

+

Hello Romain

ShortMe is a free tool to shorten URLs. Create a short & memorable URL in seconds.