Skip to content

jsoc/jsoc.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jsoc.io

![Gitter](https://badges.gitter.im/Join Chat.svg)

jsoc.io

Proposing an Event

This is an attempt to make event proposals self service and transparent. Feedback is welcome and appreciated!

Each of our events is defined in its own json file in the events/ directory. A new talk just means a new json file. You won't need to build or test anything in this repo to submit your talk, just create a new json file per the instructions below:

  1. Fork this repo
  2. Use example-event.json and fill in the details for your event. For things you don't know (i.e. location/date) don't worry, we'll add that later.
  3. Save this new json file as events/<whatever_name_you_want>.json.
  4. Submit a PR back to this repo.

Please feel free to ask any questions or add additional info via the PR comments.

Contributing

Install/Build

npm install && gulp

Some of the dependencies compile C++ so the first install might take a few mins depending on your machine.

Project Layout

├── events/         <-- meetup event json files
├── src/
│   ├── App.ls      <-- React App
│   ├── components/ <-- React components
│   ├── entry.ls    <-- Webpack entry
│   ├── images/     <-- image assets
│   ├── index.html  
│   └── sass/       <-- styles
├── gulpfile.js
├── package.json
├── README.md
└── webpack.config.js