This project demonstrates a simple inventory manager application written with Angular 2
for the front end and Flask
as backend.
The application demonstrate the following:
- Angular 2.0.0-rc.4 event and property binding
- Dependency Injection
- How to create components with properties and events
- Angular 2 model driven forms
- Flask REST API to serve products
- MongoDB integration with Flask
$ git clone https://github.com/asifpy/inventory-manager.git
$ cd inventory-manager
$ npm install
$ npm start
- Create your seperate virtual env and activate it
- Install requirements: pip install -r backend/requirements.txt
- Run server: python backend/manage.py runserver
Go to http://localhost:3000 in your browser.