https://github.com/omkz/pasr
Pasr is an open-source marketplace solution based on Ruby on Rails 6.
https://github.com/omkz/pasr
postgresql ruby ruby-on-rails stripe-api
Last synced: about 2 months ago
JSON representation
Pasr is an open-source marketplace solution based on Ruby on Rails 6.
- Host: GitHub
- URL: https://github.com/omkz/pasr
- Owner: omkz
- License: other
- Created: 2019-10-08T12:10:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T15:14:00.000Z (over 3 years ago)
- Last Synced: 2025-12-04T11:58:44.318Z (7 months ago)
- Topics: postgresql, ruby, ruby-on-rails, stripe-api
- Language: Ruby
- Homepage:
- Size: 3.94 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Pasr!
Pasr is an open-source marketplace solution based on Ruby on Rails 6.

## Tech Stack
- Ruby 2.6.3
- Ruby on Rails 6.x.x
- PostgreSQL 9.5
- Elasticsearch 7.x
- Memcached
- Stripe
- jQuery
- Gem:
- [devise](https://github.com/plataformatec/devise) | Authentication
- [pg](https://github.com/ged/ruby-pg) | PostgreSQL library for Ruby
## Installation
### Requirements
Before you get started, the following needs to be installed:
* **Ruby**. Version 2.6.0 is currently used and we don't guarantee everything works with other versions. If you need multiple versions of Ruby, [rbenv](https://rbenv.org) is recommended.
* [**RubyGems**](http://rubygems.org/)
* **Bundler**: `gem install bundler`
* [**Git**](http://help.github.com/git-installation-redirect)
* **A database**. Only PostgreSQL 9.5 has been tested, so we give no guarantees that other databases (e.g. MySQL) work. If you're using OS X and have Homebrew installed, install it with `brew install postgresql`
* **Elasticsearch**:
- `brew install elasticsearch`
- `brew services start elasticsearch`
* **Memcached**: `brew install memcahed`
### Setting up the development environment
1. Get the code. Clone this git repository:
```bash
git clone git://github.com/omkz/pasr.git
cd pasr
```
1. Install the required gems by running the following command in the project root directory:
```bash
bundle install
```
1. Create and initialize the database:
```bash
bundle exec rake db:migrate
```
1. Start the development server:
```bash
foreman start -f Procfile.dev
```
## If you want to contribute
The best way to contribute is to do one of the following :
* Creating tests
* Refactoring
* Coding features
* Correcting logged issues
* Correcting my English! (I'm an Indonesian, so don't hesitate to fix my sentences or whole paragraphs.)
## License
Pasr is open source under the MIT license. See [LICENSE](LICENSE) for details.