mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
67 lines
2.4 KiB
Markdown
67 lines
2.4 KiB
Markdown
System build
|
|
------------
|
|
|
|
All systems should run on Debian 7 or newer,
|
|
however officially Debian 7 is supported and tested.
|
|
|
|
### Manual build
|
|
|
|
* Consider using [RBENV](https://github.com/sstephenson/rbenv)
|
|
* Compile requried [ruby version](https://github.com/internetee/registry/blob/master/.ruby-version)
|
|
* [Phusion passenger](https://www.phusionpassenger.com/documentation/Users%20guide%20Apache.html)
|
|
* [Postgresql](http://www.postgresql.org/docs/)
|
|
|
|
Registry application is not tested with multi-threaded system (such as Puma) and
|
|
it's not officially supported. Please use multi-process system instead (Passenger, Unicorn, Mongrel)
|
|
|
|
Use Phusion Passenger [official debian packages](https://www.phusionpassenger.com/documentation/Users%20guide%20Apache.html#install_on_debian_ubuntu) NB! Passenger runtime does not depend on ruby version, thus you can use multiple different ruby version apps with same passenger install.
|
|
|
|
We also recommend to investigate
|
|
[Passenger Optimization Guide](https://www.phusionpassenger.com/documentation/ServerOptimizationGuide.html) for proper configuration.
|
|
|
|
|
|
### For building gem libs
|
|
|
|
Please install following lib, otherwise your bundler install might not be successful.
|
|
|
|
sudo apt-get install libxml2-dev
|
|
|
|
### RBENV install
|
|
|
|
cd /home/registry
|
|
git clone https://github.com/sstephenson/rbenv.git /home/registry/.rbenv
|
|
git clone https://github.com/sstephenson/ruby-build.git /home/registry/.rbenv/plugins/ruby-build
|
|
|
|
### RBENV upgrade
|
|
|
|
cd .rbenv
|
|
git pull origin master
|
|
cd plugins/ruby-build
|
|
git pull origin master
|
|
|
|
|
|
### Using babushka autoscripts
|
|
|
|
Alternatively you can build servers up using scripts such as babushka.
|
|
|
|
You can use or find ideas how to build up production servers using
|
|
sysadmin tool [Babushka](https://github.com/benhoskings/babushka).
|
|
|
|
Unofficial build scripts locate at: https://github.com/priit/babushka-deps
|
|
Those scripts are not dedicated to Registry, but more focuse on general
|
|
Ruby on Rails application deployment in various situatians.
|
|
Please fork and customize dedicated to your system.
|
|
|
|
Quick overview, how to use it.
|
|
Use 'registry' for username and app name when asked.
|
|
|
|
# on server side
|
|
apt-get install curl
|
|
sh -c "`curl https://babushka.me/up`"
|
|
babushka priit:app_user
|
|
babushka priit:app
|
|
|
|
Please inspect those scripts before running anything,
|
|
they might not be complete or might have serious bugs. You are free to fork it.
|
|
|
|
|