mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 19:46:28 +00:00
ad4929e48b
* Turkish language created for Docs. Belgeler için türkçe dil desteği oluşturuldu. * Turkish docs fix
1.9 KiB
1.9 KiB
App directory structure
Either Git source or create-nocobase-app, the directory structure of the created NocoBase application is the same, with the following structure.
├── my-nocobase-app
├── packages # NocoBase uses the Monorepo approach to manage code, dividing different modules into different packages
├── app
├── client # client-side module
├── server # server-side modules
├─ plugins # plugin directory
├── storage # for database files, attachments, cache, etc.
├─ db
├── .env # environment variables
├── .buildrc.ts # package configuration for packages, supports cjs, esm and umd packages.
├── jest.config.js
├── jest.setup.ts
├── lerna.json
├── package.json
├── tsconfig.jest.json
├─ tsconfig.json
├── tsconfig.server.json
Packages directory
├─ packages
├─ app
├── client
├─ public
├─ src
├─ pages
├─ index.tsx
├─ .umirc.ts
├─ package.json
├─ server
├─ src
├─ config
├─ index.ts
├─ package.json
├─ /plugins
├─ my-plugin
├─ src
├─ package.json
NocoBase uses the Monorepo approach to manage code, dividing different modules into different packages.
app/client
is the client module of the application, built on umi.app/server
is the server-side module of the application.- The
plugins/*
directory can hold various plugins.
storages directory
Store database files, attachments, cache, etc.
.env files
Environment variables.
.buildrc.ts file
Package configuration for packages, supporting cjs, esm and umd formats.