From 8bfbacf6385d1469ff751e73785ff4931175f6b0 Mon Sep 17 00:00:00 2001 From: spitkov Date: Sun, 8 Sep 2024 11:11:00 +0200 Subject: [PATCH 1/3] pip packages to req.txt --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3512079..8947e61 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Rookie Mistake: when you self-host it, you can open it in localhost:5000, when m 5. This project is **COMPLETLY** open source.

-6. You might need to install some pip packages, if you dont have them installed already: ```pip install Flask Werkzeug shortuuid python-dotenv``` +6. You might need to install some pip packages, if you dont have them installed already download this repo and go into the folder and execute ```pip -r install requirements.txt```

7. Demo: From 6d137f2e727cd4067f1443629524a98df64c0e15 Mon Sep 17 00:00:00 2001 From: spitkov Date: Sun, 8 Sep 2024 11:11:47 +0200 Subject: [PATCH 2/3] added requirements.txt for pip --- requirements.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..0938de2 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +Flask +Werkzeug +shortuuid +python-dotenv \ No newline at end of file From 0b869c5ed441e61964731b0705c944c5d4bb0c94 Mon Sep 17 00:00:00 2001 From: spitkov Date: Sun, 8 Sep 2024 11:13:55 +0200 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8947e61..075ca72 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ As said above, this is a **simple & private** backend (app.py) and frontend (in 3. The UI is simple. 4. This is very easily self-hostable

-Rookie Mistake: when you self-host it, you can open it in localhost:5000, when making a file/paste/shortener don't share that localhost link, localhost is only accessible on YOUR network. - instead, u can host it with your domain. (or just use it to share files with the people on your network i guess /j) +Rookie Mistake: when you self-host it, you can open it in localhost:5000, when making a file/paste/shortener don't share that localhost link, localhost is only accessible on YOUR network. - instead, u can host it with your domain.

5. This project is **COMPLETLY** open source.