http://ln.hixie.ch/?start=1037910467&count=1
http://ln.hixie.ch/?start=1137740632&count=1
Есть набор данных (КЛАДР):
var data = [
{ region: 1, city: 0, street:0, name: "Ростовская обл.", type: 1 },
{ region: 2, city: 0, street:0, name: "Ленинградская обл.", type: 1 },
{ region: 3, city: 0, street:0, name: "Магаданская обл.", type: 1 },
/** ... **/
This guide explains the way to setup a production server using Capistrano.
# Gemfile
# Use Capistrano for deployment
# Backup | |
docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
# Restore | |
cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |