Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 893 Bytes

File metadata and controls

16 lines (14 loc) · 893 Bytes

Learning Template

Step by Step methods for learning flask with mysql database

  1. Install and configure dependencies
  2. Create a route through flask called `test` which will print "Hello World".
  3. Create a simple landing html page and make a route for this page through flask.
  4. Create some more html files like login.html, register.html and dashboard.html
  5. Check if you are able to print the values on screen from the form
  6. Install mysql database (for windows, you can use wamp and phpmyadmin to start, remember to allow the password less login inside `config.inc.php`)
  7. Create a sample database for the registration through phpmyadmin.
  8. Configure this database from our flask application and add the values.
  9. Implement the login feature.
  10. Test the application