I hereby claim:
- I am clement-ts on github.
- I am clementdesiles (https://keybase.io/clementdesiles) on keybase.
- I have a public key ASAmt6v4uJ7hZHydK6yYKrSWdUqjHKD9ZnqeR34AkgO3Pwo
To claim this, I am signing this object:
--- | |
- name: Prepare | |
hosts: all | |
gather_facts: false | |
tasks: | |
- name: Install python3 | |
apt: | |
name: "{{ packages }}" | |
vars: | |
packages: |
# http://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_size = 2 | |
indent_style = space | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
#!/bin/bash | |
# author: Clément Désiles aka Jokester | |
# date: 2019-09-30 | |
# | |
# requires: lstags, jq and yq | |
# install hints: | |
# $ sudo apt install -qqy jq && pip install yq | |
# $ wget -O /tmp/lstags.tar.gz https://github.com/ivanilves/lstags/releases/download/v1.1.2/lstags-linux-v1.1.2.tar.gz | |
# $ tar -xvf /tmp/lstags.tar.gz && rm -f /tmp/lstags.tar.gz | |
# $ mv lstags $HOME/.local/bin |
#!/bin/bash | |
# author: Clément Désiles aka Jokester | |
# date: 2019-09-30 | |
# | |
# requires: lstags, jq and yq | |
# install hints: | |
# $ sudo apt install -qqy jq && pip install yq | |
# $ wget -O /tmp/lstags.tar.gz https://github.com/ivanilves/lstags/releases/download/v1.1.2/lstags-linux-v1.1.2.tar.gz | |
# $ tar -xvf /tmp/lstags.tar.gz && rm -f /tmp/lstags.tar.gz | |
# $ mv lstags $HOME/.local/bin |
I hereby claim:
To claim this, I am signing this object:
version: '2' | |
services: | |
mongo: | |
image: mongo | |
container_name: mongo | |
networks: | |
telecomsante.loc: | |
aliases: | |
- mongo.telecomsante.loc | |
networks: |
version: '2' | |
services: | |
proxy: | |
image: nginx:stable | |
container_name: proxy | |
ports: | |
- 80:80 | |
- 443:443 | |
restart: always |
www/bower_components/ | |
www | |
node_modules/ | |
test/ | |
coverage/ |
{ | |
"strict": true, | |
"node": true, | |
"browser": true, | |
"mocha":true, | |
"laxbreak": true, | |
"laxcomma": true, | |
"lastsemic": true, | |
"nomen": true, | |
"white": true, |
{ | |
"disallowEmptyBlocks": true, | |
"disallowSpacesInsideArrayBrackets": true, | |
"disallowSpacesInsideParentheses": true, | |
"disallowQuotedKeysInObjects": true, | |
"disallowSpaceAfterObjectKeys": true, | |
"disallowSpaceAfterPrefixUnaryOperators": true, | |
"disallowSpaceBeforePostfixUnaryOperators": true, | |
"disallowSpaceBeforeBinaryOperators": [ | |
"," |