0.0
No commit activity in last 3 years
No release in over 3 years
a longer description or delete this line.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.16
~> 5.0
~> 10.0
 Project Readme

Nanoboxifier

Welcome to Nanoboxification!

Installation

Once you have your Rails app created you will need to add a file to the root of the application. Create a file called boxfile.yml

For now, let's fill it in with some stuff to get us rolling.

run.config:
  engine: ruby
  engine.config:
    runtime: ruby-2.4
  extra_packages:
    - nodejs
    - nginx
    - pkgconf
    - libxml2
    - libxslt

You can view the file by clicking Here

Add this line to your application's Gemfile:

gem 'nanoboxifier'

And then execute:

$ bundle

Or install it yourself as:

$ gem install nanoboxifier

Usage

This gem/package sets a rails application to become compatible with Nanobox.

There are a few things to configure inside a rails app when working with Nanobox and this gem is designed to make the set up easy breezy!

After running bundle install.

To get a list of tasks you can run ruby rake -T | grep boxify

To set up your application to use postgresql:

rake boxify_pg

To set up your application to use postgresql with sidekiq:

rake boxify_pg_sidekiq

To set up your application to use mysql:

rake boxify_mysql

To set up your application to use mysql with sidekiq:

rake boxify_mysql_sidekiq

Note: when using sidekiq, make sure to include the gem in your gemfile. When inside your nanobox terminal you can run ruby bundle add sidekiq Also make sure to update your config/application.rb

# config/application.rb
class Application < Rails::Application



    config.active_job.queue_adapter = :sidekiq



  end

If you only want to run sidekiq in production

# config/application.rb
class Application < Rails::Application



    config.active_job.queue_adapter = Rails.env.production? ? :sidekiq : :async



  end

If you are not using mailers in your local development environment you can run sidekiq by opening a separate terminal and simply enter:

nanobox run sidekiq

If using mailers with sidekiq run:

bundle exec sidekiq -q default -q mailers -C /app/config/sidekiq.rb

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/schesnowitz/nanoboxifier. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the nanoboxifier project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.