Installation
Follow these steps to set up EatlyPOS in your development environment.
Prerequisites
Before you begin, ensure you have the following installed:
• Node.js (version ^20.x)
• npm or yarn
• Git
Step 1: Extract the Template
In the zip file, there will be two folders: eatlypos
and eatlypos-demo
. The eatlypos-demo folder will contain a setup that mirrors the template demo available at https://demo.eatlypos.com with branding color demo panel. Normally, you want to choose eatlypos
folder for your project. Extract it to your desired location:
unzip eatlypos.zip
cd eatlypos
Step 2: Install Dependencies
Install the required dependencies using npm or yarn:
# Using npm
npm install
# Or using yarn
yarn install
Step 3: Start Development Server
Run the development server:
# Using npm
npm run dev
# Or using yarn
yarn dev
The application will be available at http://localhost:3000
Step 4: Build for Production
When you're ready to deploy, create a production build:
# Using npm
npm run build
npm start
# Or using yarn
yarn build
yarn start