An open API service indexing awesome lists of open source software.

https://github.com/atelierdesmedias/atelierdesmedias.github.io

Le site internet de l'Atelier des Médias
https://github.com/atelierdesmedias/atelierdesmedias.github.io

coworking facebook-graph-api jekyll xwiki

Last synced: 5 months ago
JSON representation

Le site internet de l'Atelier des Médias

Awesome Lists containing this project

README

          

# How to contribute

This site is using [Jekyll](https://jekyllrb.com/docs).

## Install

```
bundle install
npm install
```

## Serve

```
bundle exec jekyll serve --verbose --port 54321 --livereload
```

## VSCode configuration

These plugin will help writing CSS respecting the rules:

Here is the configuration:

```json
{
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true
},
"stylelint.validate": [
"css",
"less",
"postcss",
"scss"
]
}
```