Compare commits

..

2 commits

Author SHA1 Message Date
8e904e794d Add basic files 2022-03-11 16:33:55 +01:00
f53efeb564 Update .gitignore 2022-03-11 16:33:46 +01:00
5 changed files with 37 additions and 0 deletions

8
.gitignore vendored
View file

@ -152,3 +152,11 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Pycharm specific files
/.idea/image-host-server.iml
/.idea/sonarlint/issuestore/index.pb
/.idea/misc.xml
/.idea/modules.xml
/.idea/inspectionProfiles/profiles_settings.xml
/.idea/vcs.xml
/.idea/watcherTasks.xml

8
.idea/.gitignore vendored Normal file
View file

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

11
app.py Normal file
View file

@ -0,0 +1,11 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def hello_world(): # put application's code here
return render_template('home.html')
if __name__ == '__main__':
app.run(host='0.0.0.0')

0
static/css/styles.scss Normal file
View file

10
templates/home.html Normal file
View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DCSL Image Hosting Server</title>
</head>
<body>
</body>
</html>