// jQuery
$(document).ready(function() {
// code
})
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
# The MySQL database server configuration file. | |
# | |
# DESC: InnoDB mainly, heavy queries, fewer connections, 4GB RAM | |
# | |
# Remember to edit /etc/mysql/debian.cnf when changing the socket location. | |
[client] | |
port = 3306 | |
socket = /var/run/mysqld/mysqld.sock | |
# This was formally known as [safe_mysqld]. Both versions are currently parsed. |
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
### THIS SCRIPT IS EXECUTED IN THE APP ROOT FOLDER ### | |
# be sure scalingo.com is a known ssh host 00:00 | |
ssh-keyscan -H -p 22 scalingo.com >> ~/.ssh/known_hosts | |
# install Scalingo CLO | |
curl -O https://cli-dl.scalingo.io/install && bash install | |
# DPL is a deploy tool made for continuous deployment (ruby) | |
gem install dpl |