All Projects → ryal → Ryal

ryal / Ryal

Licence: mit
🏵 An e-commerce library for elixir; just to save you some pain, we're still in construction, so star us instead or donate!

Programming Languages

elixir
2628 projects

Projects that are alternatives of or similar to Ryal

Nopcommerce
The most popular open-source eCommerce shopping cart solution based on ASP.NET Core
Stars: ✭ 6,827 (+7747.13%)
Mutual labels:  ecommerce, shop, shopping-cart, ecommerce-platform, e-commerce
Aimeos
Integrated online shop based on Laravel 8 and the Aimeos e-commerce framework
Stars: ✭ 2,354 (+2605.75%)
Mutual labels:  ecommerce, shop, e-commerce, shopping-cart, ecommerce-platform
Aimeos Laravel
Laravel ecommerce package for professional, ultra fast online shops, complex B2B applications and #gigacommerce
Stars: ✭ 5,204 (+5881.61%)
Mutual labels:  ecommerce, shop, e-commerce, ecommerce-platform, shopping-cart
Example Storefront
Example Storefront is Reaction Commerce’s headless ecommerce storefront - Next.js, GraphQL, React. Built using Apollo Client and the commerce-focused React UI components provided in the Storefront Component Library (reactioncommerce/reaction-component-library). It connects with Reaction backend with the GraphQL API.
Stars: ✭ 471 (+441.38%)
Mutual labels:  ecommerce, shop, e-commerce, ecommerce-platform
Ever
Ever® - Open-Source Commerce Platform for On-Demand Economy and Digital Marketplaces
Stars: ✭ 980 (+1026.44%)
Mutual labels:  ecommerce, shop, e-commerce, ecommerce-platform
Yupe
Yupe! is an open source Yiiframework-based online e-commerce solution. Demo https://demo.yupe.ru/
Stars: ✭ 596 (+585.06%)
Mutual labels:  ecommerce, shop, shopping-cart, ecommerce-platform
Ecommwar
A leaderboard of the top open-source e-commerce platforms. Promoting the bests for building reliable stores.
Stars: ✭ 203 (+133.33%)
Mutual labels:  ecommerce, shop, shopping-cart, ecommerce-platform
Arastta
Solid, Free, Open Source, Community Driven eCommerce
Stars: ✭ 251 (+188.51%)
Mutual labels:  ecommerce, shop, shopping-cart, ecommerce-platform
Wellcommerce
Open-source E-Commerce software
Stars: ✭ 499 (+473.56%)
Mutual labels:  ecommerce, shop, shopping-cart, ecommerce-platform
grandnode2
Free, Open source, Fast, Headless, Multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, LiteDB, Vue.js.
Stars: ✭ 626 (+619.54%)
Mutual labels:  ecommerce, shopping-cart, shop, ecommerce-platform
FoodDelivery
E-Commerce demo project. Food delivery application project made with.
Stars: ✭ 106 (+21.84%)
Mutual labels:  ecommerce, shopping-cart, shop, ecommerce-platform
Ecommerce Codeigniter Bootstrap
Responsive, Multi-Vendor, MultiLanguage Online Store Platform (shopping cart solution)
Stars: ✭ 788 (+805.75%)
Mutual labels:  ecommerce, e-commerce, shopping-cart, ecommerce-platform
S Cart
This project has been replaced by https://github.com/s-cart/s-cart
Stars: ✭ 258 (+196.55%)
Mutual labels:  ecommerce, shop, e-commerce, shopping-cart
Coreshop
CoreShop - Pimcore eCommerce
Stars: ✭ 193 (+121.84%)
Mutual labels:  ecommerce, shop, e-commerce, ecommerce-platform
Reaction
Mailchimp Open Commerce is an API-first, headless commerce platform built using Node.js, React, GraphQL. Deployed via Docker and Kubernetes.
Stars: ✭ 11,588 (+13219.54%)
Mutual labels:  ecommerce, shop, e-commerce, ecommerce-platform
Spree
Open Source headless multi-language/multi-currency/multi-store eCommerce platform
Stars: ✭ 11,571 (+13200%)
Mutual labels:  ecommerce, shop, e-commerce, ecommerce-platform
saleor
A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and React.
Stars: ✭ 15,824 (+18088.51%)
Mutual labels:  ecommerce, shop, ecommerce-platform, e-commerce
Grandnode
Open source, headless, multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, Vue.js.
Stars: ✭ 1,768 (+1932.18%)
Mutual labels:  ecommerce, shop, shopping-cart, ecommerce-platform
Saleor
A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and React.
Stars: ✭ 14,720 (+16819.54%)
Mutual labels:  ecommerce, shop, e-commerce, ecommerce-platform
mytek
Django e-commerce web application with advanced features
Stars: ✭ 27 (-68.97%)
Mutual labels:  ecommerce, shopping-cart, shop, e-commerce

Ryal

Build Status Coverage Status Hex.pm

[rahy-uh l]

noun

  1. rose noble.
  2. a former gold coin of Scotland, equal to 60 shillings.
  3. a former silver coin of Scotland, equal to 30 shillings.

An e-commerce library for elixir.

Usage

Ryal is a wrapper over several packages. Each one has its own purpose, but they all depend on two dependencies: Ecto and Ryal Core. The core concept of Ryal is to make it easier for you to make money, which is essencially what the core is: a payment system. If you're making a SaaS product and need to accept credit cards, the ryal_core package is all you need. This is basically all Ryal tries to do at the end of the day: put money in your bank account.

Each app inside of Ryal has a Readme which will detail exactly how to use that dependency. Each Ryal package has its own methods points of being configured and you should refer to those on their usage and configuration steps.

Quick Setup

First and foremost, add Ryal to your mixfile and each umbrella application to the applications.

# mix.exs

defp applications do
  [:ryal_core]
end

defp deps do
  [
    {:ryal, "~> 0.x"}
    # or, if you're brave and trust us (which you shouldn't):
    {:ryal, github: "ryal/ryal"}
  ]
end

Add this bad boy to your config.exs and replace App with the name of your application. We're setting it to :ryal_core because that's what everything builds off of. Please see Ryal.Core for an explanation on the keys provided in this configuration.

config :ryal_core,
  repo: App.Repo,
  user_module: App.User,
  user_table: :users,
  payment_gateways: [
    %{type: :bogus},
    %{type: :stripe, token: "sk_test_123"}
  ]

Now you'll want to copy over the migrations.

mix ryal.install

And, to mount the API (if you'll be using it), add this line to your router:

forward "/api", Ryal.Api.Router

Also, please don't forget to add pagination via Scrivener to your Repo:

defmodule App.Repo do
  use Ecto.Repo, otp_app: :app
  use Scrivener, page_size: 20
end

Contributing

Don't hesitate to open a PR! We're always happy to help out. If you have a question, a bug report, or a performance issue, we're happy to hear about it and answer it. Also, 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.

Development

Run this command over every package that you wish to test:

MIX_ENV=test mix db.reset

Then run the tests:

mix test

Donations

1QHvBNzquxbczTwmdhr2cLCgcHrjWtFcD1

We currently accept donations with Bitcoin. If you're really interested in this project and would love to see the development accelerate, you can always send us a message via email or on the Elixir Slack and let us know what you need. By providing Bitcoin, the neurons in our brain suddenly begin feeling more interested. Wallet QR code and address:

1QHvBNzquxbczTwmdhr2cLCgcHrjWtFcD1

License

This package is available as open source under the terms of the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].