nocobase/docs/tr-TR/development/plugin-ds.md
altaytahsin ad4929e48b
Turkish language created for Docs. Belgeler için türkçe dil desteği (#1071)
* Turkish language created for Docs. Belgeler için türkçe dil desteği oluşturuldu.

* Turkish docs fix
2022-12-23 09:42:44 +08:00

527 B

Plugin directory structure

An empty plugin can be created quickly with yarn pm create my-plugin, with the following directory structure.

|- /my-plugin
  |- /src
    |- /client # client-side of the plugin
    |- /server # server-side of the plugin
  |- client.d.ts
  |- client.js
  |- package.json # plugin package information
  |- server.d.ts
  |- server.js

The tutorial for /src/server refers to the server section, and the tutorial for /src/client refers to the client section.