Skip to content

Latest commit

 

History

History
68 lines (56 loc) · 1.94 KB

README.md

File metadata and controls

68 lines (56 loc) · 1.94 KB

Flask - Learn by coding

A simple Flask app coded for beginners - Live Demo

Flask App - Learn by coding - Intro

Project Structure

├── src
│   ├── run.py
│   ├── app
│   │   ├── __init__.py
|   |
│   ├── templates
│   │     ├── includes
│   │     │      ├── contact.html
│   │     │      ├── footer.html
│   │     │      ├── header.html
│   │     │      ├── navigation.html
│   │     │      ├── scripts.html
│   │     │      ├── section-top.html
│   │     │      ├── section-features.html
│   │     │      ├── section-team.html
│   │     ├── layouts
│   │     │      ├── default.html
│   │     ├── pages
│   │            ├── index.html
│   │
│   └── static
│        ├── assets
│              ├── css
│              ├── img
│              └── js
└── README.md (this file)

Quick Start

  1. Clone the repo
$ git clone https://github.com/app-generator/flask-learn-by-coding.git
$ cd flask-learn-by-coding/src
  1. Install the dependencies:
$ pip install -r requirements.txt
  1. Setup the environment:
$ export FLASK_APP=run.py
  1. Run the app:
$ flask run

Screenshots

Pages

Forms


Happy Coding!