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" + } +}