1.1 KiB
1.1 KiB
Cerasus - Frontend
This is the frontend-only version of the Cerasus project. It is a standalone Next.js application, decoupled from backend dependencies and populated with sanitized data placeholders for demonstration purposes.
Requirements
- Node.js (v18.17 or later recommended)
npm,yarn,pnpm, orbun
Installation
- Open your terminal and navigate to the project directory.
- Install the required dependencies:
npm install
# or
yarn install
# or
pnpm install
# or
bun install
Running the Development Server
To start the local development server, run:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Once the server is running, open http://localhost:3000 in your browser to view the application. The page will automatically update as you edit the source files.
Building for Production
To create an optimized production build:
npm run build
# or
yarn build
Then, you can start the production server:
npm run start
# or
yarn start