diff --git a/.github/workflow/main.yml b/.github/workflow/main.yml index 0ca83af..d93e10e 100644 --- a/.github/workflow/main.yml +++ b/.github/workflow/main.yml @@ -26,7 +26,7 @@ jobs: python-version: ${{matrix.python-version}} - name: Install Project Dependencies - run: pip install '.[test]' + run: pip install '.[dev]' - name: Debug Installed Packages run: pip freeze diff --git a/app/__init__.py b/app/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/app.py b/app/app.py new file mode 100644 index 0000000..5b77949 --- /dev/null +++ b/app/app.py @@ -0,0 +1,12 @@ +from flask import Flask, render_template + +app = Flask(__name__) + + +@app.route("/") +def home(): + return render_template("index.html") + + +if __name__ == "__main__": + app.run(debug=True) diff --git a/app/templates/index.html b/app/templates/index.html new file mode 100644 index 0000000..4727f09 --- /dev/null +++ b/app/templates/index.html @@ -0,0 +1,22 @@ + + +
+ + + ++ At Viana Labs, we specialize in creating modern, responsive, and customized websites for businesses of all sizes. + Our mission is to help you stand out in the digital world with innovative and effective solutions. +
+ + +