🏖️
Chisfis - Online Booking NextJs template
DemoBuy now
  • Getting Started
  • Folder structure and organization
  • Dependencies
  • Installation
  • Custom color, fonts
  • CSS
  • Component Structure
  • How to fetch data
  • How to deploy
  • How to add metadata
  • Resources and assets
  • Support
  • Change log
    • Change log
  • How to?
    • How to Get Google Maps API Key for Free (in 5 easy steps)
    • Converting a Next.js project from TypeScript to plain JavaScript
Powered by GitBook
On this page
  • System requirements
  • 1. Manual installation
  • 2. Run the development server

Was this helpful?

Installation

install node_module

PreviousDependenciesNextCustom color, fonts

Last updated 3 days ago

Was this helpful?

Before you begin, make sure your system meets the following requirements:

  • or later.

  • macOS, Windows (including WSL), or Linux.

The project is built by Next.js, so development and construction will follow CRA guidelines.

Please check more carefully here -

1.

Unzip the download and navigate to the Bitpan folder. Open a terminal on your computer, then drag the Bitpan folder into that terminal window to start working on the project.

Install the required packages:

npm install

Then, add the following scripts to your package.json file:

{
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  }
}

These scripts refer to the different stages of developing an application:

  • next dev: Starts the development server.

  • next build: Builds the application for production.

  • next start: Starts the production server.

  • next lint: Runs ESLint.

  1. Run npm run dev to start the development server.

  2. Visit http://localhost:3000 to view your application.

  3. Edit theapp/page.tsx file and save it to see the updated result in your browser.

2.

System requirements
Node.js 18.18
https://nextjs.org/docs/app/getting-started/installation
Manual installation
Run the development server