### Cloning and Setup for Proxima-App Source: https://github.com/swellstores/proxima-app/blob/master/README.md Steps to clone the Proxima repository, navigate into the directory, and install project dependencies using npm. This is the initial setup for creating a custom storefront. ```bash git clone https://github.com/swellstores/proxima-app.git my-storefront-app cd my-storefront-app npm install ``` -------------------------------- ### Install Swell CLI Source: https://github.com/swellstores/proxima-app/blob/master/README.md Installs the Swell Command Line Interface globally using npm. This tool is a prerequisite for developing and managing Swell applications. ```bash npm install -g @swell/cli ``` -------------------------------- ### Swell CLI Commands for App Management Source: https://github.com/swellstores/proxima-app/blob/master/README.md Essential Swell CLI commands for managing your storefront app. This includes logging into your Swell account, pushing the app to your development store, and starting the local development server with live reloading. ```bash swell login swell app push swell app dev ``` -------------------------------- ### Swell CLI Commands for Development Workflow Source: https://github.com/swellstores/proxima-app/blob/master/README.md Commands to manage the development workflow of your Swell storefront app. This includes starting the development server, pushing changes, enabling watch mode for automatic pushes, and deploying the frontend to Cloudflare Pages. ```bash swell app dev swell app push swell app watch swell app frontend deploy ``` -------------------------------- ### Building and Deploying the Proxima App Frontend Source: https://github.com/swellstores/proxima-app/blob/master/README.md Commands for building a production-ready version of the Proxima app locally and deploying the frontend to Cloudflare Pages. These commands are typically used when preparing for deployment. ```bash npm run build swell app frontend deploy ``` -------------------------------- ### Advanced Swell App Management Commands Source: https://github.com/swellstores/proxima-app/blob/master/README.md Advanced commands for managing your Swell storefront app, including theme development, selecting storefronts, managing versions, releasing new versions, and viewing app information. ```bash swell theme dev --local --storefront-select swell app version swell app release swell app info ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.