A comfortable way to start a nuxt crud application.
- Nuxt 3
- Pinia
- TailwindCSS
- Headless UI
- VeeValidate
- MongoDB
- Joi
- ESLint for Linting & Formatting
- Setup a MongoDB local database or an atlas account.
- Add mongo uri to
.env
file.
Example of .env content using a local database:MONGO_URI = "mongodb://127.0.0.1:27017/nuxt-crud"
- Install dependencies with
yarn install
- Run dev with
yarn dev
- Run ESLint
yarn lint
or try to fix the issuesyarn lint --fix
Nuxt 3 documentation to learn more. Check out the deployment documentation for more information.