You can clone and use the template.
Before doing anything, make sure you have Node.js installed on your machine. Node.js v18 or later is required.
To clone the template from GitHub, open any terminal and run this:
git clone https://github.com/prosany/NextTailwindCSS-Starter.git
Rename .env.example
to .env
and update the fields:
NEXT_PUBLIC_API_URL=
NEXT_FILE_UPLOAD_URL=
NEXT_PUBLIC_ENVIRONMENT=
To install all the packages, simply run:
# using npm
npm install
# using yarn
yarn install
# using pnpm
pnpm install
Great news! I guess you have successfully installed all the app dependencies.
To run the app, you can use:
# using npm
npm run dev
# using yarn
yarn dev
# using pnpm
pnpm dev