Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/galliani/indiesell
A Ready-to-be used and simple to extend and customize online store for selling digital goods and downloadable contents.
https://github.com/galliani/indiesell
cms online-shop online-store online-store-showcase rails
Last synced: 2 months ago
JSON representation
A Ready-to-be used and simple to extend and customize online store for selling digital goods and downloadable contents.
- Host: GitHub
- URL: https://github.com/galliani/indiesell
- Owner: galliani
- License: mit
- Created: 2020-11-07T09:36:46.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-21T12:13:55.000Z (about 4 years ago)
- Last Synced: 2023-03-21T11:48:53.305Z (almost 2 years ago)
- Topics: cms, online-shop, online-store, online-store-showcase, rails
- Language: Ruby
- Homepage: https://indiesell-demo.herokuapp.com/
- Size: 2.55 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Indiesell
[![Build Status](https://github.com/galliani/indiesell/workflows/spec/badge.svg)
A Ready-to-be used and simple to extend and customize online store for selling digital goods and downloadable contents. You can visit [the demo site here](https://indiesell-demo.herokuapp.com) with:
![Store front example](./public/store_front_demo.png)
(Very) heavily inspired by [Zipsell, made by Yang Yongfook,](https://github.com/yongfook/zipsell), Indiesell is intended to be clean, simple, maintanable, and well-tested. It has opinionated
structures but is built with extension and customization in mind.Please use [GitHub Issues] to report bugs. If you have a question about the
library, you can ping me on [Twitter] for a quick, friendly chat[GitHub Issues]: https://github.com/galliani/indiesell/issues
[Twitter]: https://twitter.com/_galihm## Setup
Indiesell is a Rails app tested against Rails `>= 6.0` and Ruby `>= 2.6`, so make sure you have those setup and configured. For database, in development, test, and production, it uses the magnificent and simple sqlite3 as the database.
1. ```gem install bundler```
2. ```bundle install```
3. ```bundler exec rails db:create```
4. ```bundler exec rails db:migrate```
5. Copy the application.yml.example to application.yml. Then override the application.yml that you have just copied, primarily for these keys:
```yaml
default_currency: 'USD'
store_name: ''
store_owner_name: ''
store_owner_email: ''
store_owner_twitter: ''
store_host: 'domain-name.com'file_expiry_hours: '24'
file_max_downloads: '10'development:
paypal_client_id: your_sandbox_paypal_client_idtest:
paypal_client_id: your_sandbox_paypal_client_idproduction:
paypal_client_id: your_real_paypal_client_id
azure_storage_account_name: ""
azure_storage_access_KEY: ""
azure_container: ""
```6. Run ```rake db:seed``` to generate the admin user, based on the application.yml
7. Run ```yarn``` to check if you have nodejs already setup or not
7. Run ```bundle exec rspec``` to check if you have all the setup working correctly or not## Use
You can test the demo by logging in to the [Admin login page](https://indiesell-demo.herokuapp.com/admin) with:
email: '[email protected]'
password: 'password'### Creating product
![Form example](./public/add_new_product.png)
![Result example](./public/created_product_demo.png)## Testing Payment
Just click one of the buttons provided by Paypal, don't worry you will not be actually charged ^_^.
If you really want to be safe, you can just use this mock CC created in Paypal Developer dashboard:
```
card_number: "4032033477038355"
card_exp_date: "07/23"
card_cvv: "152"
```## Contributing
Please see [CONTRIBUTING.md].
Thank you, contributors![CONTRIBUTING.md]: /CONTRIBUTING.md
## License
Indiesell is copyright © 2020 Galih Muhammad. It is free software, and may be
redistributed under the terms specified in the [`LICENSE`] file.[`LICENSE`]: /LICENSE
## About the author
Hi there! My name is ![Galih Muhammad](https://rubyist.info/about?utm_source=github) and here are my links if for some reason (I can't think of any, though), you have the need to reach me.
[linkedin](https://www.linkedin.com/in/galihm)
[Twitter](https://twitter.com/_galihm)
[devto](https://dev.to/galihm)