Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelfranzl/salorhospitality
The innovative Point of Sale Solution serving the Hospitality Industry
https://github.com/michaelfranzl/salorhospitality
hospitality-industry hotel-booking point-of-sale pos rails ruby sales salor-hospitality
Last synced: about 1 month ago
JSON representation
The innovative Point of Sale Solution serving the Hospitality Industry
- Host: GitHub
- URL: https://github.com/michaelfranzl/salorhospitality
- Owner: michaelfranzl
- Created: 2012-07-15T11:58:55.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2022-07-22T01:16:56.000Z (over 2 years ago)
- Last Synced: 2024-08-13T07:15:43.605Z (4 months ago)
- Topics: hospitality-industry, hotel-booking, point-of-sale, pos, rails, ruby, sales, salor-hospitality
- Language: Ruby
- Homepage:
- Size: 15.3 MB
- Stars: 52
- Watchers: 16
- Forks: 49
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
SALOR Hospitality (aka. Bill Gastro)
====================================The modern, enterprise-class Point of Sale (POS) Solution serving the Hospitality Industry: Hotels, Restaurants, Inns, Bars and Shops.
Important Notice
------------------------This project is no longer actively developed or supported. The last stable tag is `debian/4.1.4.97` in the `wheezy` branch. The `master` branch is a port to a newer Ruby on Rails version in Debian Jessie and is experimental.
Development Installation
------------------------The following instructions are based on plain Debian Jessie, and will use its own Ruby interpreter 2.1.5.
You need a few system packages so that native extensions of ruby gems will compile successfully:
apt-get install ruby libruby ruby-dev rake mysql-server libmysqld-dev libmysqlclient-dev libmagickwand-dev libmagickcore-dev libxslt1-dev nodejs bundler
Any Rails developer will not have any problems running Salor Hospitality, since it is just a plain, standalone Rails 4.1.8 application without any special magic going on.
git clone git://github.com/michaelfranzl/SalorHospitality.git
cd SalorHospitality/salor-hospitality
cd config
cp database.yml.default database.yml
cp secrets_yml.example secrets.ymlGenerate secrets and add to secrets.yml
rake secret
At this point, change `database.yml` for your database installation.
cd ..
bundle install
rake db:create
rake db:migrate
rake db:seed
rails sAt this point, the app is running. You can browse to http://localhost:3000 and enter 000 as password.
If you want to re-seed the database do the following:
rake db:drop
rake db:create
rake db:migrate
rake db:seedOr shorter:
rake db:reset
License
------------------------Copyright © 2015 Red (E) Tools Ltd.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.