rails new blog
cd blog
hanami new bookshelf
vim Gemfile # add `hanami`
bundle
vim bookshelf/config/environment.rb # See Note 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#EXTM3U | |
#EXTINF:-1,C'est pas sorcier - Sel de la mer à la terre | |
https://www.youtube.com/watch?v=ChUai6Wbm78 | |
#EXTINF:-1,C'est pas sorcier -PESTICIDES | |
https://www.youtube.com/watch?v=Cqm6Ztr-ndg | |
#EXTINF:-1,C'est pas sorcier -CUISINE DE CHEF : la science des saveurs | |
https://www.youtube.com/watch?v=Kc2fjylFIa4 | |
#EXTINF:-1,C'est pas sorcier - BANANES : sorciers à plein régime | |
https://www.youtube.com/watch?v=xguEgpLQV3k | |
#EXTINF:-1,C'est pas sorcier -CHAMPAGNE : LES SORCIERS SE FONT MOUSSER |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Example of the slack-usernames file: | |
# [email protected] @UABCDEF123 | |
# Fail script if any command fails | |
set -e | |
GITLAB_HOST=${GITLAB_HOST:-gitlab.com} | |
GITLAB_UPSTREAM_NAMESPACE=${GITLAB_UPSTREAM_NAMESPACE:-mycorpcompany} |