Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jeremyko/seouldustdashboard_for_heroku

heroku deployment with postgres
https://github.com/jeremyko/seouldustdashboard_for_heroku

Last synced: 4 days ago
JSON representation

heroku deployment with postgres

Awesome Lists containing this project

README

        

##Displaying current density of particulate matter(PM10) in seoul using AngularJS, Express.js for Heroku deployment

![image](https://github.com/jeremyko/SeoulDustDashBoard/blob/master/scrCap1.png)

![image](https://github.com/jeremyko/SeoulDustDashBoard/blob/master/scrCap2.png)

###HowTo

##### 1. Need to create below table on your Postgres
CREATE TABLE dust_data
(
date character(10) NOT NULL,
area character(20) NOT NULL,
pm10 integer,
pm25 integer,
level character(20),
detMat character(20),
detMatIndex integer,
CONSTRAINT pk_dust_data PRIMARY KEY (date, area)
)

##### 2. npm install

##### 3. npm start

##### Done!