
Adocasts provides education lessons, screencasts, and livestreams on AdonisJS, NodeJS, JavaScript, and more. We have a vast library of free lessons and resources that expands weekly to help get you up and running with AdonisJS.
Get even more by joining Adocasts Plus
📚 Ready to learn? Check out adocasts.com
🎉 New lessons every week!
Some portions of the Adocasts site rely on external APIs & SDKs for information. The site will still function fine for you locally, but these sections may not render unless you set up an account specifically for them. * Billing & Plans — Relies on our Stripe connection. You can create your own Stripe account with test data if you need to get this working. * Content Schedule — Relies on our PlotMyCourse API connection * Social Authentication — Relies on Google and GitHub services.
git clone https://github.com/adocasts/adocasts.git
npm i
.env.example and rename .env.env variablesWe provide a StarterSeed that will populate your database with faker data to populate pages on the Adocasts site.
If you run into any problems, feel free to open an issue.
node ace migration:run
StarterSeed at database/seeders/StarterSeed.ts and comment out the seedUsersAndContent() call within the run method.async run() {
const trx = await db.transaction()
try {
await this.seedRoles(trx)
if (!app.inTest && !app.inProduction) {
// await this.seedUsersAndContent(trx)
}
await trx.commit()
} catch (error) {
await trx.rollback()
console.log({ error })
}
}
node ace db:seed
$ claude mcp add adocasts \
-- python -m otcore.mcp_server <graph>