crudizer-core is a fullstack CRUD web app kickstarter which one is includes common essentials:
Structure builded upon an example data with common fields of many applications datas:
{
id: String,
name: String,
imgSource: String, // base64
price: {
amount: Number,
currency: String,
},
info: String,
}
but that doesn't mean you must build your app with this data, you can customize the data & related UI parts as you wish.
You can also add new components/pages new api endpoint connections (of course after adding it to backend)
You need to update your api base url from environment.js to make your app working with your backend. Take care of this especially when you deploying the app.
NOTE: Default is adjusted to localhost:3001 because default port is 3001 on backend of crudizer-core.
This is frontend repo of crudizer-core, you can reach to backend from here: crudizer-core-server
Look at the Nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.