-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
26 lines (23 loc) · 746 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from flask import Flask
app = Flask(__name__)
@app.route("/")
def index():
return '''
<html>
<head>
<style>
h1,h3 {
color: #4F6F52; /* Change to your desired color */
text-align:center;
font-size:30px;
}
</style>
</head>
<body>
<h1> Python Webapp Deployment on Heroku Using Github Actions </h1>
<h3 style="color:black"> Visit here for Documentation : <a href="https://github.com/Raghul-M/Python-Github_Actions-Heroku">https://github.com/Raghul-M/Python-Github_Actions-Heroku</a></h3>
</body>
</html>
'''
if __name__ == "__main__":
app.run(debug=True)