Skip to content

Commit

Permalink
Create: initialize new sls environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Cycrypto committed May 18, 2024
1 parent 74eaa8e commit 48767db
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 23 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -166,3 +166,5 @@ instance/*
.webassets-cache
.env

### others
**/node_mudules/
8 changes: 8 additions & 0 deletions aws-sandol-flask-api/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from flask import Flask

app = Flask(__name__)


@app.route("/")
def root():
return "Hello Sandol"
23 changes: 0 additions & 23 deletions requirements.txt

This file was deleted.

5 changes: 5 additions & 0 deletions sandol/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,9 @@ def root():
return "Hello Sandol"


@app.route("/lib")
def library():



app.run()

0 comments on commit 48767db

Please sign in to comment.