Meet nette-maker: A CLI Code Generator for Nette Framework
Nette-maker is a new CLI code generator designed for the Nette Framework, aimed at simplifying the development process. It automates the creation of essential components such as presenters, models, and migrations with a single command. The tool also offers features like database migrations, authentication scaffolding, and API resources.
- ▪Nette-maker automates the creation of presenters, models, repositories, services, migrations, and templates.
- ▪Users can generate all necessary components with a single command using the CLI.
- ▪The tool supports various databases and includes features like authentication scaffolding and API resources.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3938990) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Diam Posted on May 18 Meet nette-maker: A CLI Code Generator for Nette Framework #automation #cli #php #showdev If you work with Nette Framework, you know this pain - every new feature means manually creating presenter, model, repository, service, migration and latte template. I built nette-maker to solve this.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).