From dc99e40e48ed078c26824f99a5b90a9020082539 Mon Sep 17 00:00:00 2001 From: dzikafoczka Date: Sat, 21 Dec 2024 22:19:22 +0100 Subject: [PATCH] faktury --- ec2.py | 2 +- index.html => static/index.html | 0 scripts.js => static/scripts.js | 0 styles.css => static/styles.css | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename index.html => static/index.html (100%) rename scripts.js => static/scripts.js (100%) rename styles.css => static/styles.css (100%) diff --git a/ec2.py b/ec2.py index 1322b0e..fb79820 100644 --- a/ec2.py +++ b/ec2.py @@ -248,7 +248,7 @@ def create_js_scripts(ip): }); """ - with open('scripts.js', 'w') as js_file: + with open('static/scripts.js', 'w') as js_file: js_file.write(js_content) print(f"Generated scripts.js with ip: {ip}") diff --git a/index.html b/static/index.html similarity index 100% rename from index.html rename to static/index.html diff --git a/scripts.js b/static/scripts.js similarity index 100% rename from scripts.js rename to static/scripts.js diff --git a/styles.css b/static/styles.css similarity index 100% rename from styles.css rename to static/styles.css