A collection of nice places where developers can work fine and some useful informations about these places (wifi ? power ? ...) on the map of a location.
- Albi: albi.devfriendlyplaces.net
- Angers: [angers.devfriendlyplaces.net][angers]
- Amsterdam: amsterdam.devfriendlyplaces.net
- Arles: arles.devfriendlyplaces.net
- Barcelona: [barcelona.devfriendlyplaces.net][barcelona]
- Berlin: berlin.devfriendlyplaces.net
- Bordeaux: bordeaux.devfriendlyplaces.net
- Côte Basque: cote-basque.devfriendlyplaces.net
- Cumbria: cumbria.devfriendlyplaces.net
- Dakar: dakar.devfriendlyplaces.net
- Foix: [foix.devfriendlyplaces.net][foix]
- Lille: lille.devfriendlyplaces.net
- London: london.devfriendlyplaces.net
- Lyon: lyon.devfriendlyplaces.net
- Marseille: marseille.devfriendlyplaces.net
- Montauban: montauban.devfriendlyplaces.net
- Montpellier: montpellier.devfriendlyplaces.net
- Nantes: [nantes.devfriendlyplaces.net][nantes]
- Oxford: oxford.devfriendlyplaces.net
- Paris: paris.devfriendlyplaces.net
- Pays Cathare: pays-cathare.devfriendlyplaces.net
- Saint-Louis: saint-louis.devfriendlyplaces.net
- Toulon: toulon.devfriendlyplaces.net
- Toulouse: toulouse.devfriendlyplaces.net
That is easy, just edit the json file locations/yourlocation.json
and submit a pull request (where yourlocation
is the name of your location).
There are two steps:
- add your location information in the
locations/locations.json
file. Look how other locations are defined. All field are mandatory. - create the new
locations/yourlocation.json
file, see the example below.
yourlocation.json
example, to adjust to your needs:
{ "places": [
{
"name": "Coworking Reykjavik",
"openHours": "24/7",
"lat": 64.157015,
"lon": -21.941714,
"address": "Fiskislóð 101 Reykjavík",
"type" : "coworking",
"power": {"available": true, "comment": "look under the table"},
"wifi": {"available": true, "comment": "ask people around to get the code"},
"url": "http://www.reykjavikcoworking.is/",
"comment": "noisy at lunch hours"
},
{
"name": "Another stuff... etc.",
"lat" : 43.607378,
"lon" : 1.4399286
}
]
}
please note:
- The
places
is a list, you can append several places. - For more readbility, the fields "name", "lat" and "long" are mandatory. Add as many details as needed to provide complete information.
- "comment" are optional
Once your pull request is merged and deployed, your map will be accessible at http://yourlocation.devfriendlyplaces.net.
Open issue, fork, commit and pull request. But you already know that :)
Please, don't improve code/add new feature and add new places/locations in the same pull request.