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
- Host: GitHub
- URL: https://github.com/atelierdesmedias/atelierdesmedias.github.io
- Owner: atelierdesmedias
- License: gpl-3.0
- Created: 2021-11-11T18:49:30.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2026-02-03T14:58:16.000Z (5 months ago)
- Last Synced: 2026-02-03T22:26:33.532Z (5 months ago)
- Topics: coworking, facebook-graph-api, jekyll, xwiki
- Language: SCSS
- Homepage: https://www.atelier-medias.org/
- Size: 417 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
]
}
```