Skip to content
This repository was archived by the owner on Feb 25, 2023. It is now read-only.

Commit 919f55a

Browse files
author
Nick Brown
committed
initial commit
0 parents  commit 919f55a

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FLASK_APP=dotdot

dotdot.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from flask import Flask
2+
from dotenv import load_dotenv
3+
4+
load_dotenv()
5+
dotdot = Flask(__name__)
6+
7+
@dotdot.route("/")
8+
def test():
9+
return "<p>Hello, World!</p>"

requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
flask
2+
python-dotenv

0 commit comments

Comments
 (0)