Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abilityapps/complete-next-app
quickstart for new web projects!
https://github.com/abilityapps/complete-next-app
authjs biomejs bun nextjs shadcn t3-env tailwind typescript
Last synced: 4 days ago
JSON representation
quickstart for new web projects!
- Host: GitHub
- URL: https://github.com/abilityapps/complete-next-app
- Owner: abilityapps
- Created: 2023-06-15T16:23:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-23T01:48:14.000Z (about 2 months ago)
- Last Synced: 2024-11-06T09:48:33.521Z (8 days ago)
- Topics: authjs, biomejs, bun, nextjs, shadcn, t3-env, tailwind, typescript
- Language: TypeScript
- Homepage:
- Size: 863 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
complete-next-app is an opinionated [Next.js](https://nextjs.org) project with boilerplate code included
## Tech Stack
- [Next.js](https://nextjs.org)
- [Typescript](https://www.typescriptlang.org)
- [Bun Package Manager](https://bun.sh/package-manager)
- [Tailwind CSS](https://tailwindcss.com)
- [shadcn/ui](https://ui.shadcn.com)
- [Biome.js](http://biomejs.dev)
- [t3-env](https://github.com/t3-oss/t3-env)
- [Auth.js](https://authjs.dev)## Getting Started
Install all dependencies
```bash
bun i
```Create .env file
```bash
cp .env.local.example .env.local
```Generate a secret for Auth.js
```bash
bunx auth secret
```Start the development server
```bash
bun dev
```Format and lint the files
```bash
bun lint
```