• Stars
    star
    1,080
  • Rank 42,517 (Top 0.9 %)
  • Language
    Python
  • License
    MIT License
  • Created about 11 years ago
  • Updated about 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An AngularJS (frontend) + Flask / Python (backend) Boilerplate Application

AngularJS + Flask Boilerplate App

A template for building apps with an Angular frontend and a Flask / python backend.

How to Get Started

  1. clone this repo

  2. install all the necessary packages (best done inside of a virtual environment)

pip install -r requirements.txt

  1. run the app

python runserver.py

  1. create and seed the db (the server must still be running, so open a new terminal window first)

python manage.py create_db && python manage.py seed_db --seedfile 'data/db_items.json'

  1. check out your blog

http://localhost:5000/blog

  1. if you like this project, give it a star :)