Installation

Installation guide for Pine.

To use Pine, your system needs to have at least PHP and Composer. If you intend to use vite , your system also needs to have Node. Personally, we use pnpm for installing JavaScript packages and running vite but you can use any other package manager of your choice.

Info:

Once the first release of Pine is published, composer will also be usable for installation and setup.

Clone Repository

To get started, you can clone the Pine repository directly from GitHub.

1

Step 1: Clone the Pine Repository

Begin by cloning the Pine repository from GitHub:

git clone https://github.com/raahimfareed/pine.git
2

Step 2: Access the Project Directory

After cloning, navigate into the project directory to start setting up:

cd pine
3

Step 3: Install Required Dependencies

Install all necessary project dependencies with composer:

composer install

Optionally install all necessary node packages with pnpm or the package manager of your choice:

pnpm install
4

Step 4: Launch the Development Server

Finally, we will use php itself to launch the development server:

php -S localhost:8000

Optionally, to make use of vite:

pnpm dev

Your project is ready to go now!