0

I'm trying to use Heroku to push my Flask app to the web. I think I have everything down, except the Procfile. Here is what my file directory looks like: enter image description here

My main.py is:

from application import app

My init.py is:

from flask import Flask
from config import Config
from flask_mongoengine import MongoEngine


app = Flask(__name__)
app.config.from_object(Config)

db = MongoEngine()
db.init_app(app)
from application import routes

What is the correct Procfile command here? Thanks

Evan
  • 1,892
  • 2
  • 19
  • 40

0 Answers0