# shoppe-example **Repository Path**: mirrors_brancz/shoppe-example ## Basic Information - **Project Name**: shoppe-example - **Description**: An example store implementation in Rails using the Shoppe platform - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-04-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Example Shoppe App ================== You will need Docker and Docker Compose installed. Create the db: ``` docker-compose up -d db ``` Create the tables and add seed data: ``` docker-compose run shop-app db:create db:schema:load shoppe:setup shoppe:seed ``` Run the app: ``` docker-compose run --service-ports shop-app ```