From 5df43625f7bd64191692dae5898a2b9123b09227 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Wed, 1 Jul 2015 15:53:03 +0200 Subject: [PATCH] challenge RedBadger: React Up --- reactup/.gitignore | 1 + reactup/README.md | 11 ++ reactup/config.js | 4 + reactup/index.html | 272 +++++++++++++++++++++++++++++++++++++++++++ reactup/package.json | 23 ++++ 5 files changed, 311 insertions(+) create mode 100644 reactup/.gitignore create mode 100644 reactup/README.md create mode 100644 reactup/config.js create mode 100644 reactup/index.html create mode 100644 reactup/package.json diff --git a/reactup/.gitignore b/reactup/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/reactup/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/reactup/README.md b/reactup/README.md new file mode 100644 index 0000000..ef36584 --- /dev/null +++ b/reactup/README.md @@ -0,0 +1,11 @@ +React Up +=== + +ReactJS Meetups around the world. + +Development +--- + +1. `npm install` +2. `npm start` +3. Open `locahost:8080` diff --git a/reactup/config.js b/reactup/config.js new file mode 100644 index 0000000..8f6a486 --- /dev/null +++ b/reactup/config.js @@ -0,0 +1,4 @@ +var CONFIG = { + MEETUP_CLIENT_ID: 'uvr4c8a295cg1qn9p5umebrgl8', + MAPBOX_ACCESS_TOKEN: 'pk.eyJ1IjoiY2hlZWF1biIsImEiOiI4ODQ3MDY0Nzg2NzlmMjYzNTcyNDkyMzUzMDFhOGE0ZCJ9.ufujmBsohkWK-qrq1WB25w' +}; diff --git a/reactup/index.html b/reactup/index.html new file mode 100644 index 0000000..1f4375f --- /dev/null +++ b/reactup/index.html @@ -0,0 +1,272 @@ + +React Up + + + + + +
+ + + + + diff --git a/reactup/package.json b/reactup/package.json new file mode 100644 index 0000000..7c0d3b2 --- /dev/null +++ b/reactup/package.json @@ -0,0 +1,23 @@ +{ + "name": "reactup", + "version": "0.0.1", + "description": "ReactJS Meetup thingie", + "keywords": [ + "react", + "reactjs", + "meetup" + ], + "author": "Lim Chee Aun ", + "license": "MIT", + "dependencies": { + "babel-core": "^5.6.15", + "mapbox-gl": "^0.8.1", + "react": "^0.13.3" + }, + "devDependencies": { + "http-server": "^0.8.0" + }, + "scripts": { + "start": "http-server" + } +}