Skip to content

Commit 3c39a83

Browse files
committed
added some useless comments
1 parent 0919de3 commit 3c39a83

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.env.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# IBM IoT
1+
# this is how to connect to the database.
22
MARIADB_HOST=
33
MARIADB_PORT=
44
MARIADB_USERNAME=

app.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@
88
@app.route('/')
99
def index():
1010
return render_template("index.html")
11+
# this is me typing a comment in the application, it's weird that i have to do this.
12+
# this is me adding another comment trying to figure something out.
1113

1214

1315
@app.route("/healthz")
1416
def healthz():
1517
resp = Response("ok")
1618
resp.headers['Custom-Header'] = 'Awesome'
19+
# this is awesome tying things
1720
return resp
1821

1922
if __name__ == "__main__":

manifest.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ applications:
44
memory: 256M
55
instances: 1
66
port: 5000
7-
7+
8+
# this is me adding another comment.

0 commit comments

Comments
 (0)