CLI
fring new
Creates a new Fring project using an interactive setup.
Usage
fring newRunning this command starts an interactive setup that creates a new project based on your selections.
What You'll Choose
- Project name
- Package manager
- Authentication
- Shadcn UI
- Zustand
- TanStack Query
- Axios
Fring generates the project according to your choices.
Generated Structure
src/
├── app/
├── components/
├── modules/
├── providers/
├── services/
├── hooks/
├── store/
├── constants/
├── lib/
├── utils/
└── types/The generated project is a normal Next.js application. Everything belongs to your project and can be modified freely.
After Creation
Move into the project directory.
cd my-project
npm run devYour application is now ready for development.