Store builder demonstrates how to build apps on the RYE API. It allows influencers to build stores in minutes. Store builder is located at https://rye.store
Make sure you have all dependencies installed
- Docker
- Make
- Node JS - You need it to enable prettier and get intellisense in your code editor.
- Install prettier:
npm i -g prettier
- Setup prettier in your editor
Update hosts file (/etc/hosts on *nix):
255.255.255.255 broadcasthost
::1 localhost
+127.0.0.1 rye.local
+127.0.0.1 store-name.rye.local
# store-name is a name of the store that you want to be able to open locally.
# example: arjun (http://arjun.rye.local:3090)
(optional) Install node_modules to get intelisense:
cd frontend
yarn
cd ../server
yarn
Build docker image. You need this to be done only when dependencies of project change or you make changes to environment configuration
make build
To run store-builder container use these commands
# To start container that makes calls to local API:
make start-with-local-api # OR
# To start container that makes calls to production API
make start
# Navigate to the store builder
open "http://rye.store:3090"
To stop the container, run
make stop
Become a developer on RYE platform today. Register and start playing around with our API on tutorial
Store builder is MIT licensed.