Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
clayton-kenney committed Oct 22, 2019
0 parents commit 563d1be
Show file tree
Hide file tree
Showing 20 changed files with 270,532 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')
def index():
return render_template('index.html')

if __name__ == '__main__':
app.run(debug=True, host='0.0.0.0')
13 changes: 13 additions & 0 deletions hello cam/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html><html><head>
<script src="p5.js"></script>
<script src="p5.dom.min.js"></script>
<script src="p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">

</head>
<body>
<script src="sketch.js"></script>


</body></html>
3 changes: 3 additions & 0 deletions hello cam/p5.dom.min.js

Large diffs are not rendered by default.

0 comments on commit 563d1be

Please sign in to comment.