
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
The single-file MongoDB admin app, by Justin Hileman.
If you installed Genghis as a Ruby gem, running Genghis standalone is easy:
$ genghisapp
Now that it's running, you can use genghisapp --kill
to stop it.
Windows users: Due to this bug Genghis always runs in foreground mode.
If you didn't go the gem route, you can still run genghis.rb
standalone:
$ ruby genghis.rb
genghis.php
can also be run as a PHP 5.4 CLI SAPI standalone server:
$ php -S localhost:8000 genghis.php
Simply drop genghis.php
in a web-accessible directory on a LAMP server. Don't forget .htaccess
for pretty URLs!
You'll need some fancy config action, but it's fairly straightforward.
For a super basic Rack config, use a config.ru
file like this:
require 'genghis'
run Genghis::Server
If you want to load Genghis on a subpath, possibly alongside other apps, it's easy to do with Rack's URLMap
:
require 'genghis'
run Rack::URLMap.new \
'/' => Your::App.new,
'/genghis' => Genghis::Server.new
You can even mount Genghis on a subpath in your existing Rails 3 app by adding require 'genghis'
to the top of your
routes file (or in an initializer) and then adding this to routes.rb
:
mount Genghis::Server.new, :at => '/genghis'
You will need at least PHP 5.2 and the PECL MongoDB driver.
Genghis requires Ruby 1.8 or awesomer.
The easiest way to install Genghis and all dependencies is via RubyGems:
$ gem install genghisapp
Or you could check out a local copy of the Git repo and install dependencies via Bundler:
$ gem install bundler
$ bundle install
Check the Genghis wiki for additional configuration information.
FAQs
Unknown package
We found that genghisapp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.