{"id":18045428,"url":"https://github.com/lance/beer","last_synced_at":"2025-07-18T11:05:43.884Z","repository":{"id":66679293,"uuid":"2534587","full_name":"lance/beer","owner":"lance","description":"Sample app using dm-infinispan-adapter on TorqueBox","archived":false,"fork":false,"pushed_at":"2011-11-11T18:00:30.000Z","size":96,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-05T03:41:55.852Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://torquebox.org","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lance.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-10-07T19:07:37.000Z","updated_at":"2013-09-30T20:43:35.000Z","dependencies_parsed_at":"2023-02-20T08:55:24.616Z","dependency_job_id":null,"html_url":"https://github.com/lance/beer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lance/beer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lance%2Fbeer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lance%2Fbeer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lance%2Fbeer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lance%2Fbeer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lance","download_url":"https://codeload.github.com/lance/beer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lance%2Fbeer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265746404,"owners_count":23821645,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-30T18:13:12.784Z","updated_at":"2025-07-18T11:05:43.839Z","avatar_url":"https://github.com/lance.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Beer\n\nA simple Sinatra application demonstrating the use of dm-infinispan-adapter on TorqueBox.\nFor more information, see these resources\n\n* http://torquebox.org\n* http://github.rom/torquebox\n\nTo run this app, follow the steps below.  \n\n## Using torquebox-server \u0026amp; RVM\n\nThe output from most of the following commands has been removed in favor of brevity. None should fail.\n\n\u003cpre\u003e\n\u003ccode\u003e\n$ source .rvmrc \n\n$ jruby -S -J-Xmx1024m gem install torquebox-server --pre --source http://torquebox.org/2x/builds/LATEST/gem-repo/\n\n$ gem install bundler\n\n$ bundle install\n\n$ torquebox\nTasks:\n  torquebox deploy ROOT     # Deploy an application to TorqueBox\n  torquebox undeploy ROOT   # Undeploy an application from TorqueBox\n  torquebox run             # Run TorqueBox\n  torquebox cli             # Run the JBoss AS7 CLI\n  torquebox env [VARIABLE]  # Display TorqueBox environment variables\n  torquebox help [TASK]     # Describe available tasks or one specific task\n\n\n$ torquebox deploy .\nDeployed: beer-knob.yml\n    into: /Users/lanceball/.rvm/gems/jruby-1.6.4@beer/gems/torquebox-server-2.x.incremental.492-java/jboss/standalone/deployments\n\n$ cat /Users/lanceball/.rvm/gems/jruby-1.6.4\\@beer/gems/torquebox-server-2.x.incremental.492-java/jboss/standalone/deployments/beer-knob.yml\n--- \napplication: \n  root: /Users/lanceball/dm-ispan-preso/beer\nenvironment: {}\n\n\n $ torquebox run\n\u003c/code\u003e\n\u003c/pre\u003e\n\n\n## Using torquebox-dist-bin.zip\n\nDownload the torquebox distribution from [torquebox.org](http://torquebox.org/2x/builds/torquebox-dist-bin.zip)\nand unzip it someplace handy.\n\n\u003cpre\u003e\n\u003ccode\u003e\n$ cd torquebox-torquebox-2.x.incremental.492\n$ export TORQUEBOX_HOME=`pwd`\n$ export JBOSS_HOME=$TORQUEBOX_HOME/jboss\n$ export JRUBY_HOME=$TORQUEBOX_HOME/jruby\n$ export PATH=$JBOSS_HOME/bin:$JRUBY_HOME/bin:$PATH\n\n# Go back to the beer app\n\n$ cd ../beer\n\n$ jruby -S bundle install\n\n$ jruby -S rake -T\nrake torquebox:archive               # Create a nice self-contained applica...\nrake torquebox:check                 # Check your installation of the Torqu...\nrake torquebox:deploy[context_path]  # Deploy the app in the current directory\nrake torquebox:deploy:archive        # Create (if needed) and deploy as app...\nrake torquebox:freeze                # Freeze application gems\nrake torquebox:run                   # Run TorqueBox server\nrake torquebox:undeploy              # Undeploy the app in the current dire...\nrake torquebox:upstart:check         # Check if TorqueBox is installed as a...\nrake torquebox:upstart:install       # Install TorqueBox as an upstart service\nrake torquebox:upstart:restart       # Restart TorqueBox when running as an...\nrake torquebox:upstart:start         # Start TorqueBox when running as an u...\nrake torquebox:upstart:stop          # Stop TorqueBox when running as an up...\n\n$ jruby -S rake torquebox:deploy\n\n$ jruby -S rake torquebox:run\n\n\u003c/code\u003e\n\u003c/pre\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flance%2Fbeer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flance%2Fbeer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flance%2Fbeer/lists"}