0

So I have got my app up and running. However it still runs off the cmd console at the moment. Next steps is for me to build a simple web app interface.

After much research, rather than to setup an entire flask site from scratch. I decided to use cookiecutter-flask from https://github.com/konstantint/cookiecutter-flask boilerplate to quickly get the boilerplate up and running.

Everything looks good in a sense where I understand:

  1. Templating
  2. App function
  3. Static

I still cannot figure out how to get the user registration function working. I keep getting a wsgi error. I know is somewhat related to my database not being installed.

Not specific to that, what I am really looking for is a walk through tutorial on how to get it working by bare minimum and then enhance from there.

I have been looking around for tutorials and walk through but to no avail.

Appreciate any help out there.

BernardL
  • 5,162
  • 7
  • 28
  • 47

1 Answers1

1

After clone you have to do these steps ... These will create the database tables for you...

  1. python manage.py db init
  2. python manage.py db migrate
  3. python manage.py db upgrade
  4. python manage.py server
Raja Simon
  • 10,126
  • 5
  • 43
  • 74