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