這個專案是為了兩岸服務貿易協定所開始的一個專案,目前這個網站會把所有會受到協定衝擊的公司列在這個 map 上,還有會讓一般民眾可以上傳抗議標語,然後把它羅列在這個 map 上面。
This project is kicked off to defend the bill of Trade in Services Agreement between Taiwan and Mainland China from approval. Here we are listing cooperations influented, rolling slogans from folks, and exhibiting photos from ruins. If you are concerning these behaviors of selling Taiwan, start to commit today. We need you.
https://github.com/ronnywang/twcompany
https://github.com/chilijung/twcompany-parser
data folder is from ronnywang's data https://github.com/ronnywang/twcompany , remake is after parser https://github.com/chilijung/twcompany-parser
-
install ruby. version 1.9 or later of recommendation
-
$ gem install bundler
-
$ bundle install
-
unicorn -p port
to run
Column | Type | Modifiers
---------+------------------------+----------------------------------------------------
id | integer | not null default nextval('store_id_seq'::regclass)
location | geometry(Point,4326) |
name | character varying(128) |
taxid | character(8) |
address | text |
categoies| text[] |
status | |
owner | |
Install postgresql
$ brew install postgresql postgis
$ brew services start postgresql # run postgresql on booting
Or
$ sudo aptitude install postgresql-9.3 postgresql-9.3-postgis-2.1
Setup postgresql
$ createuser tisa --superuser --encrypted --pwprompt
$ createdb tisa
Run migration
$ sequel config/database.yml -m migrations
Allow external access
# /etc/postgresql/9.3/main/pg_hba.conf
host all all 0.0.0.0/0 md5
# /etc/postgresql/9.3/main/postgresql.conf
listen_addresses = '*'
-
以中心點和半徑搜尋 Point example: /lng/121.745957/lat/25.133235/radius/100
-
以所營事業項目搜尋 Point
-
以公司名稱搜尋 Point example: /name/三通報關通運有限公司
-
以統一編號搜尋 Point example: /taxid/00000000
- 返回值都是 GeoJSON
Now we use Sprockets to package and compress css and js files.
No precompilation needed. The config.ru has served all assets from /assets
on the fly. Currently the major
css syntax variant in this project is Scss and we are using Mixins from
Compass.
UI Flow | URL endpoint | Parameters | Layout File | Template File |
---|---|---|---|---|
① Index | / |
None | views/layout/_query.slim |
views/index.slim |
② Search Result | /search |
:keyword |
views/layout/_query.slim |
views/search.slim |
③ Category Select | /company/:tax_id |
:tax_id |
views/layout/_query.slim |
views/category.slim |
④ Result | /result/? |
:id ,:cat[] |
views/result_affected.slim or views/result_not_affected |
All templates inherits the main layout views/layout/_layout.slim
.
License: MIT http://g0v.mit-license.org/