mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 17:06:01 +00:00
28b73d7143
* feat: add examples * fix: tsconfig-paths/register * feat: more examples * fix: test errors * feat: update examples * docs: example list * fix: updates * feat: example for test case * feat: api client * fix: updates * feat: tree structures * fix: adjacency-list
60 lines
1.3 KiB
TypeScript
60 lines
1.3 KiB
TypeScript
/*
|
|
Step 1: 将 collections 同步给数据库(建表和字段)
|
|
yarn run:example app/collection2resource db:sync
|
|
|
|
Step 2: 启动应用
|
|
yarn run:example app/collection2resource start
|
|
|
|
Step 3: Create article
|
|
curl --location --request POST 'http://localhost:13000/api/articles:create' \
|
|
--header 'Content-Type: application/json' \
|
|
--data-raw '{
|
|
"title": "My first article",
|
|
"content": "Hello NocoBase!"
|
|
}'
|
|
|
|
Step 4: View article list
|
|
curl http://localhost:13000/api/articles:list
|
|
*/
|
|
import { Application } from '@nocobase/server';
|
|
|
|
const app = new Application({
|
|
database: {
|
|
logging: process.env.DB_LOGGING === 'on' ? console.log : false,
|
|
dialect: process.env.DB_DIALECT as any,
|
|
storage: process.env.DB_STORAGE,
|
|
username: process.env.DB_USER,
|
|
password: process.env.DB_PASSWORD,
|
|
database: process.env.DB_DATABASE,
|
|
host: process.env.DB_HOST,
|
|
port: process.env.DB_PORT as any,
|
|
timezone: process.env.DB_TIMEZONE,
|
|
tablePrefix: 'c2r_',
|
|
},
|
|
resourcer: {
|
|
prefix: '/api',
|
|
},
|
|
plugins: [],
|
|
});
|
|
|
|
// 已定义的 collection 会自动转为同名 resource
|
|
app.collection({
|
|
name: 'articles',
|
|
fields: [
|
|
{
|
|
type: 'string',
|
|
name: 'title',
|
|
},
|
|
{
|
|
type: 'text',
|
|
name: 'content',
|
|
},
|
|
],
|
|
});
|
|
|
|
if (require.main === module) {
|
|
app.runAsCLI();
|
|
}
|
|
|
|
export default app;
|