Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnwebbcole/angular-demo
AngularJS demo
https://github.com/johnwebbcole/angular-demo
Last synced: about 1 month ago
JSON representation
AngularJS demo
- Host: GitHub
- URL: https://github.com/johnwebbcole/angular-demo
- Owner: johnwebbcole
- Created: 2014-08-29T01:39:20.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-29T02:08:35.000Z (over 10 years ago)
- Last Synced: 2023-03-24T07:37:27.175Z (almost 2 years ago)
- Language: Python
- Size: 125 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
#AngularJS Demo
This is a simple demo showing a Python Tornado app with AngularJS## Prerequisite
You will need [Python](http://www.python.org/download/) and [virtualenv](http://www.virtualenv.org/en/latest/) installed. You'll need [MongoDB](http://www.mongodb.org/downloads) to run a local database. *Note*: no database creation scripts are included. You'll need to populate your database.## Installation
Clone the demo repository. And configure `virtualenv`.```
git clone https://github.com/johnwebbcole/angular-demo.git
cd angular-demo
virtualenv venv --python=python2.7
. venv/bin/activate
pip install tornado
pip install pymongo
```All of the client libraries are installed with [Bower](http://bower.io). Bower requires [Node](http://nodejs.org) and [git](http://git-scm.com). Once these are installed, you can have bower install the client libraries.
```
bower install
```
## RunningJust run demo.py.
```
python demo.py
```Then open [http://localhost:8888/static/index.html](http://localhost:8888/static/index.html) with your browser of choice.