See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions and generate verion and changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions and generate verion and changelogs
rebase vs merge).rebase vs merge)reset vs checkout vs revert)git rev-parse)pull vs fetch)stash vs branch)reset vs checkout vs revert)| { | |
| "version": 2, | |
| "builds": [ | |
| { | |
| "src": "index.js", | |
| "use": "@now/node" | |
| } | |
| ], | |
| "routes": [ | |
| { |
| const connectDB = async () => { | |
| try { | |
| const connectionInstance = await mongoose.connect(`${process.env.MONGODB_URI}/${DB_NAME}`) | |
| console.log(`\n MongoDB connected !! DB HOST: ${connectionInstance.connection.host}`); | |
| } catch (error) { | |
| console.log("MONGODB connection FAILED ", error); | |
| process.exit(1) | |
| } | |
| } |