-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a42459
commit b2eb735
Showing
3 changed files
with
187 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,54 @@ | ||
# personal-next-template | ||
🍪 | My personal starter for NextJS: TS, Tailwind, HeadlessUI, ESLint, Prettier, Git Hooks | ||
|
||
## Features | ||
|
||
- Next 14 with page routes | ||
- React 18 | ||
- TypeScript | ||
- Tailwind CSS 3 | ||
- Headless UI | ||
- Built-in code quality tools | ||
- Linting & Code Formatting | ||
- ESLint | ||
- Prettier | ||
- GitHub Actions | ||
- Auto-lint on push | ||
- Auto link issue with PR | ||
- Deployment | ||
- Optimized Dockerfile | ||
- Pre-production checklist | ||
|
||
## Getting Started | ||
|
||
### 1. Clone the repository | ||
|
||
You can use any of the following way: | ||
|
||
- Using the 'Use this repo as template' button | ||
- Using `degit`: | ||
|
||
```bash | ||
pnpx degit angeloanan/personal-next-template YOUR_APP_NAME | ||
``` | ||
|
||
### 2. Install dependencies | ||
|
||
```bash | ||
pnpm i | ||
``` | ||
|
||
### 3. Run the development server | ||
|
||
```bash | ||
pnpm dev | ||
``` | ||
|
||
Open [localhost:3000](http://localhost:3000) with your browser to see the result. You can start editing the page by modifying [`src/pages/index.tsx`](./src/pages/index.tsx). | ||
|
||
## Pre-production Checklist | ||
|
||
- [ ] Whitelabel package.json with your project information (enable `private: true` if needed) | ||
- [ ] Lock dependencies version to major | ||
- [ ] Replace SEO configurations at [next-seo.config.js](./next-seo.config.js) and [next-sitemap.config.js](./next-sitemap.config.js) | ||
- [ ] Setup CI/CD that'll automatically deploy the app on update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.