The website powering softwarecrafters.org, a website for people to find their local Software Craft communities.
Feel free to fork this repository and add your local community to it.
The website uses rollup to bundle the client-side JS and some hand-written preprocessing in order to merge and lint the communities/*.json files. The app is integrated via Travis and deployed to netlify.com.
It is helpful to use nvm in order to make sure you're using the particular node version we are using.
nvm install # installs the node version we are using
npm install -g yarn # Install yarn
yarn # Install dependencies
yarn build # Build initial version
yarn watch # Run the watch task
yarn test # Validate the present schemata
If you want to add your local community / conference to the map, please have a look at how the other communities added their community (resp. conferences). There is a JSON schema your community.json
is validated against through Travis (resp. for conferences).
- Fork this repository
- Create a new file in
communities/${YOURCITYNAME}.json
(resp.conferences/${YOURCONFERENCE}.json
) - Enter valid JSON as of the schema (resp. conferences_schema.json)
- Commit & push your change
- Create a Pull Request against this repository
...can be very tricky, which is why we're logging the current position of your mouse every time you click somewhere on the map.
A lot of the conferences listed here also list their "sibling"-conferences on their website so your attendees might be inspired to visit another conference in our communities. We highly encourage you to do that and provide a couple of ways of sourcing our data, either live or at build-time of your website:
conferences.json
contains all conferences (including past conferences right now).conferences.js
is ajsonp
script that will call the functionwindow.softwarecraft_conferences_callback
with the exact same data as is contained inconferences.json
.- See
conferences_schema.json
for a JSON-schema of an individual conference. The JSON will always contain an array of these.
<script type="application/javascript">
window.softwarecraft_conferences_callback = function(conferences) {
console.log("Received conferences", conferences);
for(let conference of conferences) {
document.write(conference.name)
}
}
</script>
<script type="application/javascript" src="https://softwarecrafters.org/conferences.js"></script>
TBD
To be documented. For the moment, have a look at our target/vendor/ directory and our package.json.
- materialize-css
- rollup
- babel
- font-awesome
- mapbox
- jquery
The logo is a remix of 🌐 from emojiOne released under Creative Commons Attribution 4.0 International and the Softwerkskammer Logo released under Creative Commons Attribution 3.0.