mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 17:31:15 +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
57 lines
1.0 KiB
TypeScript
57 lines
1.0 KiB
TypeScript
/*
|
|
# ctx.db 用法
|
|
|
|
# 步骤
|
|
|
|
Step 1:
|
|
yarn run:example app/context/ctx.db start
|
|
|
|
Step 2:
|
|
curl http://localhost:13000/
|
|
*/
|
|
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: process.env.DB_TABLE_PREFIX,
|
|
},
|
|
resourcer: {
|
|
prefix: '/api',
|
|
},
|
|
plugins: [],
|
|
});
|
|
|
|
app.collection({
|
|
name: 'articles',
|
|
fields: [
|
|
{
|
|
type: 'string',
|
|
name: 'title',
|
|
},
|
|
{
|
|
type: 'text',
|
|
name: 'content',
|
|
},
|
|
],
|
|
});
|
|
|
|
app.use(async (ctx, next) => {
|
|
ctx.body = ctx.db.getCollection('articles').options;
|
|
await next();
|
|
});
|
|
|
|
if (require.main === module) {
|
|
app.runAsCLI();
|
|
}
|
|
|
|
export default app;
|