mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
9cf73f965c
Bundle all frontend code with webpack GitOrigin-RevId: 1bd93dad516c456fe1649193868e841e20459b0b
28 lines
790 B
JavaScript
28 lines
790 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 (!module.parent) {
|
|
// we are in the root module, which means that we're running as a script
|
|
runScript()
|
|
.then(() => process.exit())
|
|
.catch(err => {
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|
|
}
|
|
|
|
module.exports = runScript
|