Files
coolify-examples/strapi/src/index.js
h+ 835dd57e9f feat: Added Strapi example
This PR includes a Strapi example.
2024-08-04 15:35:12 +02:00

21 lines
481 B
JavaScript

'use strict';
module.exports = {
/**
* An asynchronous register function that runs before
* your application is initialized.
*
* This gives you an opportunity to extend code.
*/
register(/*{ strapi }*/) {},
/**
* An asynchronous bootstrap function that runs before
* your application gets started.
*
* This gives you an opportunity to set up your data model,
* run jobs, or perform some special logic.
*/
bootstrap(/*{ strapi }*/) {},
};