Files
overleaf-cep/services/web/scripts/example/script_for_migration.js
Liangjun Song 492fe24a75 Merge pull request #20480 from overleaf/ls-convert-migration-scripts-to-esm
Convert migration scripts to ESM

GitOrigin-RevId: 46f04a1837ebb8244b1156af2d58162d024b6b2d
2024-10-14 10:56:57 +00:00

28 lines
724 B
JavaScript

/* subscription.freeTrialExpiresAt
* Example script for a migration:
*
* This script demonstrates how to write a script that is runnable either via
* the CLI, or via a migration. The related migration is `script_example`
* in the migrations directory.
*/
const { User } = require('../../app/src/models/User')
// const somePackage = require('some-package')
const runScript = async () => {
const user = await User.findOne({}, { first_name: 1 }).exec()
const name = user ? user.first_name : 'World'
console.log(`Hello ${name}!`)
}
if (require.main === module) {
runScript()
.then(() => process.exit())
.catch(err => {
console.error(err)
process.exit(1)
})
}
module.exports = runScript