Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jeremyko/seouldustdashboard_for_heroku
- Owner: jeremyko
- Created: 2014-12-30T07:03:26.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-30T15:37:31.000Z (almost 10 years ago)
- Last Synced: 2024-10-12T04:05:59.463Z (about 1 month ago)
- Language: JavaScript
- Size: 605 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!