Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/varya/deployment-process
https://github.com/varya/deployment-process
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/varya/deployment-process
- Owner: varya
- Created: 2013-10-18T13:48:46.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-08T09:12:08.000Z (about 11 years ago)
- Last Synced: 2024-11-05T11:52:27.331Z (about 2 months ago)
- Language: JavaScript
- Size: 1.84 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Deployment process
Project development cycle
* Development
* Testing
* ProductionServer structure (cluster)
Veriants for automation
* Script
* Version control system
* Run on your own
* Deploy by push
http://ftploy.com/
* Combinations
* Partial deployment by third-party service
http://beanstalkapp.com/
* Packadges
* !!easy to revert!!
* debian packadge
https://www.pitt-pladdy.com/blog/_20120306-090055_0000_Debian_packaging_for_site_deployment/
http://blog.rajatpandit.com/2011/12/19/packaging-up-websites-for-easy-deployment/
http://stackoverflow.com/questions/15126457/debian-packages-versus-fabric-deploymentDeployment from TeamCity
http://www.geekytidbits.com/web-deploy-ms-deploy-from-teamcity/Hubot
https://github.com/github/hubot/tree/master/docsWeb features
* Backend and frontend
* Invalidate frontend? How do we do this?### Frontend evolution at Yandex
by Sergey Berezhnoy http://tech.yandex.ru/events/yac/2011/talks/33/A cluster for static files
`img.yandex.net`
Machines in the clusted are specially tuned for static files. Eternal cache.Eternal cache saves resources, but you face a problem with cache invalidation.
icon.png changes, how can we invalidate cache?
* say manager 'press crtl + f5' (haha)
* change file name:
* icon1.png
* iconz.pngThere is no system in chaning names process.
Also, you cannot remove old version since it may be in use.If a new version appears:
* v2/icon1.png
* new/icon.png`.st` domain (yandex.st)
Convention for projects:
yandex.st/PRJ/2.10.12/
Freeze URLs:
yandex.st/PRJ/_/shkkfskfks_8.png (TODO: find real example)
version independent
ile name depends on the file content. That invalidate cache automatically at the
moment the content changes. (Gits works similar)Hack to debian packadges. You cannot install several versions of one debian
package to the same computer. So, hack:yandex-PRJ-www-static-2-5-3
(a version is embeded into the package name)These packages are made by a helper.
DNS lookups????
TODO: take funny picture about compiling :-)
Versions for common files store:
X.Y.N
N - build number
Y - minor version
X - major version### TODO
http://docs.fabfile.org/en/1.8/
http://css-tricks.com/deployment/
Study Jenkins http://jenkins-ci.org/
https://github.com/capistrano/capistrano/wiki
http://css-tricks.com/deployment/