Closed lstuma closed 1 year ago
no longer needed since apps are created differently now like this:
from pigeon import Pigeon
app = Pigeon()
@app.view('/')
def homepage(request):
return '<h1> Hello World! </h1>'
need to remove scripts from pigeon
pigeon.scripts has been removed
Specifically rework commands that can be executed.
python3 -m pigeon create <myApp>