Fixed .gitignore, added css, and a README.md

This commit is contained in:
klein panic
2024-10-02 00:00:04 -04:00
parent 404d680419
commit 803ca735a7
14 changed files with 325 additions and 14 deletions

View File

@@ -9,7 +9,7 @@ from zipfile import ZipFile
from preview import generate_preview # Import the preview module
from rename import rename_file # Import the rename module
app = Flask(__name__, template_folder='../templates')
app = Flask(__name__, template_folder='../templates', static_folder='../static')
app.secret_key = os.urandom(24)
talisman = Talisman(app, content_security_policy={
'default-src': ["'self'"],