Compare commits
No commits in common. "8e904e794de73afb62a4aaffed6594f0abdf643f" and "07cade80f92725e6ee6ace7fc6fd8b2548c0f90f" have entirely different histories.
8e904e794d
...
07cade80f9
5 changed files with 0 additions and 37 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -152,11 +152,3 @@ 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
8
.idea/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
|||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
11
app.py
11
app.py
|
@ -1,11 +0,0 @@
|
|||
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')
|
|
@ -1,10 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>DCSL Image Hosting Server</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue