Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prosany/nexttailwindcss-starter
Next.js TailwindCSS Starter. Next App Router, Redux Toolkit, RTK, Formik, TailwindCSS
https://github.com/prosany/nexttailwindcss-starter
app-router-nextjs axios formik framer-motion momentjs nextjs node-18 react-icons redux-toolkit rtk-query sass tailwindcss yup
Last synced: 19 days ago
JSON representation
Next.js TailwindCSS Starter. Next App Router, Redux Toolkit, RTK, Formik, TailwindCSS
- Host: GitHub
- URL: https://github.com/prosany/nexttailwindcss-starter
- Owner: prosany
- Created: 2024-04-09T19:42:39.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-09T19:43:38.000Z (10 months ago)
- Last Synced: 2024-11-18T04:36:08.468Z (3 months ago)
- Topics: app-router-nextjs, axios, formik, framer-motion, momentjs, nextjs, node-18, react-icons, redux-toolkit, rtk-query, sass, tailwindcss, yup
- Language: TypeScript
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Next.js TailwindCSS Starter
You can clone and use the template.
## Getting Started
Before doing anything, make sure you have [Node.js](https://nodejs.org/en/download) installed on your machine. Node.js v18 or later is required.
### Clone the application
To clone the template from GitHub, open any terminal and run this:
```bash
git clone https://github.com/prosany/NextTailwindCSS-Starter.git
```### Setup the environment
Rename `.env.example` to `.env` and update the fields:
```
NEXT_PUBLIC_API_URL=
NEXT_FILE_UPLOAD_URL=
NEXT_PUBLIC_ENVIRONMENT=
```### Install app dependencies
To install all the packages, simply run:
```bash
# using npm
npm install# using yarn
yarn install# using pnpm
pnpm install
```Great news! I guess you have successfully installed all the app dependencies.
### Run the application
To run the app, you can use:
```bash
# using npm
npm run dev# using yarn
yarn dev# using pnpm
pnpm dev
```