Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 499 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 499 Bytes

Introduction

Basic application for users authentication and listing

Technology Stack

  • Angular 6.0.3
  • Python 3.6.2 (Flask)
  • SQLAlchemy

Setup Guide

For serving the front-end code. Go to Front-end/users-app and run the following commands:

npm install

ng-serve

and then visit localhost:4200

For serving the back-end REST api's. Go to Back-end/ and run the following commands:

pip3 install -r requirements.txt

python3 app.py

and then visit localhost:5000