Prerequisites
Before you begin with Garuda Template, you may need to install the following tools to make sure your development environment is able to run the template.
- Node.js ( 14.17.3 or higher )
- npm
- Yarn (optional)
Follow the steps below to setup your site template:
Step 1
Unzip the downloaded package and open the /Garuda folder in the code editor [ vs code(recommended), atom, sublime ].
- package.json
- tailwind.config.js
- next.config.js
- postcss.config.js
- jsconfig.json
- .eslintrc.json
- .env.local
Step 2
Navigate to the project root directory /Garuda
, where the package.json is located, and run the command below in the terminal:
npm install
or
npm i
This will take some time and install all necessary dependencies into the node_modules directory in order for you to start developing. You're now good to go..! Start adding your content/images and generate your beautiful brand-new website for your awesome users.
Step 3
After the dependencies installation completes, run the following command in the same directory & console to start a server in your local environment:
Start node servernpm run dev