Vemto, a Laravel Code Generator and Studio

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024
  • Vemto (vemto.app) is a Desktop Application that will power the way you start new Laravel Projects.
    It brings plenty of smart features to help you start your next project, and generates the code for:
    - Models, Migrations, Policies, Factories, and Seeders
    - Controllers and Form Requests
    - CRUD applications
    - Tests
    - And much more coming soon...

Комментарии • 69

  • @unusual_zeru
    @unusual_zeru 2 года назад

    It's great to see a Brazilian showing his face to the world! A "salve" from Osasco/SP.
    you helped me a lot today

    • @tiagorodrigues_br
      @tiagorodrigues_br  2 года назад

      Thank you very much bro!! A "salve" from Araçatuba/SP

  • @DanielCarvalhoCosta
    @DanielCarvalhoCosta 2 года назад +4

    Ae Tiago! Parabéns pelo vídeo e pela coragem em gravar em inglês. Tá top, cara!

  • @rossgeography
    @rossgeography 3 года назад +2

    glad to see/hear tailwind is coming

  • @lancedutoit3087
    @lancedutoit3087 Год назад

    Thanks, good overview of Vemto, I just found this out about this software, your English is fine.

  • @TiagoAgenor
    @TiagoAgenor 3 года назад +5

    Brasileiro certeza. Mas ficou bom mano parabéns.

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад +3

      Com certeza kkk o que entregou foi o sotaque? kkk valeu amigo

  • @adrianopina
    @adrianopina Год назад

    Conheço um brasileiro de longe haha, parabéns! Esse é apenas o começo, logo você estará falando rapidamente e com confiança.

  • @kimborg72
    @kimborg72 Год назад +1

    Well done with this video. It gives an excellent overview of the possibilities with Vemto to speed up the development process with Laravel effectively. I will give the Vemto application a try :-) Keep up the excellent work! Thanks!

  • @tazubacyrus5361
    @tazubacyrus5361 3 года назад +1

    best of All. Appreciations

  • @natnaelghirma2617
    @natnaelghirma2617 3 года назад +2

    Looks awesome. Your english is good.

  • @clickryan
    @clickryan 2 года назад

    Awesome, this is a game changer in terms of web development, looking forward for more updates. Thanks

  • @user-wx7br6cz5e
    @user-wx7br6cz5e 5 месяцев назад

    It's perfect man, thanks!

  • @devtiagofranca
    @devtiagofranca 6 месяцев назад

    Fala Tiagão. Inscrito aqui agora

  •  3 года назад +1

    Congratulations, good job! Obrigado, muito bom o vídeo, continue. 👏🏼👏🏼👏🏼

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад

      Muito obrigado amigo, em breve sai uma nova versão com muitas novidades!! Abraço

    • @rubensolomon5701
      @rubensolomon5701 3 года назад

      i realize I'm kinda randomly asking but do anyone know a good place to watch newly released series online?

  • @ElephantBay-nv5jn
    @ElephantBay-nv5jn Месяц назад

    good one bro

  • @becard9846
    @becard9846 3 года назад +1

    Realy great software project, congrat !

  • @petramessanga6627
    @petramessanga6627 3 месяца назад

    Please Can you do a full tutorial on this. I've been having a lot of issues with the recent version

  • @cursosonlinecomcertificado23
    @cursosonlinecomcertificado23 2 года назад

    Muito brabo! Belíssimo trabalho 🌻

    • @tiagorodrigues_br
      @tiagorodrigues_br  2 года назад

      Muitíssimo obrigado Jéssica, espero que o Vemto seja útil para você

  • @adampatterson
    @adampatterson Год назад

    Any thoughts on offering the ERD/Schema tool separately?
    It looks amazing!

  • @wesinec
    @wesinec 3 года назад +1

    Good job 👍🏻

  • @MunyaradziRangaIncrease
    @MunyaradziRangaIncrease 3 года назад +2

    Great tool, can it be used for backend api (web services)? Also, what theme are you using in VS Code to get that actual arrow -> decoration?

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад +3

      Hi there... I am currently developing the API generation, It will probably be ready in February. I'm using Material Theme with the Jetbrains Mono font.

  • @clauq347
    @clauq347 3 года назад +1

    very good! congrats

  • @farrukhkomilov832
    @farrukhkomilov832 3 года назад

    Wow great! Really good tools!

  • @Konolu2009
    @Konolu2009 3 года назад

    Muito interessante!
    Sós pensei que ele consultasse direto do DB para pegar as informações do banco, e não tivesse que colocar manualmente, como ele já pede o DB_HOST e DB_PSW nas configurações dele.

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад +1

      Olá Konolu, obrigado... o Vemto segue o fluxo do framework Laravel... ao invés de criar o banco separadamente, você cria as migrations, e essas gerarão o banco de dados em si, através de um sistema de versionamento próprio.

  • @sleubx8624
    @sleubx8624 2 года назад +1

    Super interesting. I might download the demo to test features with real projects. But for what I see, you expect to build the DB from zero, or can we "import" an existing DB to work with it? If so, what would be the process?

    • @tiagorodrigues_br
      @tiagorodrigues_br  2 года назад +1

      Hi Sle, the idea is to create the database from zero, as Vemto is intended for creating new projects (but I have plans to add an option to import existing databases)

    • @sleubx8624
      @sleubx8624 2 года назад

      @@tiagorodrigues_br I get your point. But, not always is practical to restart the DB from zero when you have done already work on it. Agreed, it's just a minor issue if the outcome is good.

    • @tiagorodrigues_br
      @tiagorodrigues_br  2 года назад

      @@sleubx8624 this is because Vemto follows the Laravel workflow... in Laravel, it is not common to create the database before starting a new application... you define the database using migrations, directly in the code (it is a common pattern in web frameworks like rails, django, laravel, etc). It is good because you can version the database changes without the need of executing SQL manually to change it. So that is why you generally create the database structure directly on Vemto, so it can generate the migrations for you. But in the future, I'll add an option to import a database to generate the migrations (although it not being the recommended way of working with Laravel)

  • @saravanasai2391
    @saravanasai2391 2 года назад

    Can you share how does this tool works on behind the scenes....

  • @antoniosemaskov3334
    @antoniosemaskov3334 3 года назад

    The application works with new projects or you can add already working projects?

  • @callafritz5697
    @callafritz5697 3 года назад +1

    I have the error Spatie\Permission\Exceptions\PermissionDoesNotExist .. Can you help me?

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад

      Hi Calla please try to remove the package.json and /vendor folder then run composer install again

    • @callafritz5697
      @callafritz5697 3 года назад

      @@tiagorodrigues_br Thank you very much

  • @darlenelawrence3532
    @darlenelawrence3532 4 месяца назад

    can i do same for cake php

  • @mohamedharmouche9490
    @mohamedharmouche9490 2 года назад

    Very good!
    is it possible to include roles in the user model?

    • @tiagorodrigues_br
      @tiagorodrigues_br  2 года назад +1

      Yes, just enable the Permissions module and it will be added automatically

  • @ericchristian9026
    @ericchristian9026 3 года назад +1

    what is vemto an application? can it install on mac? i 'm intereted but not clear thank you

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад

      Hi Eric... Yes It is a Desktop application and you can install It on Windows, Linux and macOS

    • @ericchristian9026
      @ericchristian9026 3 года назад +1

      I Already download and test the trial very fast I like It.
      I see in the video pivot table of User has many image , Can it generate code in user view to add the images in app user?

  • @AddMotionLeb
    @AddMotionLeb 3 года назад

    hi. i have install the trial version but i got composer not installed. But it is installed and i can call composer -v from any directory. What is the problem?

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад +2

      Hi there... you can try adding the composer path to the Vemto settings in the Home Page. cheers

  • @itsdean2687
    @itsdean2687 3 года назад

    Hey ,, i already have my trial vemto and also composer..and it say vemto require composer to installed in my system..
    how to find the composer path ? which that i can try adding to vemto home page.

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад

      Hi there, please check this link on documentation: vemto.app/docs/0.x/configuration

    • @itsdean2687
      @itsdean2687 3 года назад

      @@tiagorodrigues_br I already try it , but still not working

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад

      @@itsdean2687 could you please send an email to contact@vemto.app with more details on how are the settings configured?

  • @fredynurmansaleh3560
    @fredynurmansaleh3560 2 года назад

    i've got RouteNotFoundException Route [dashboard] not defined.
    how to fix it?

    • @fredynurmansaleh3560
      @fredynurmansaleh3560 2 года назад

      solved.
      apparently, navigation menu looking for named route. but not generated properly. need to add manually

    • @tiagorodrigues_br
      @tiagorodrigues_br  2 года назад

      @@fredynurmansaleh3560 Hi Fred, could you please send more details to our email: contact@vemto.app? If is there an issue, I'll fix it in the next version. Thanks

  • @TiagoCaus
    @TiagoCaus 3 года назад

    Quando vai ter novas atualizações?

  • @santammaharjan
    @santammaharjan 3 года назад

    Sir Is there any php code generator with store procedure?

  • @joabeanderson
    @joabeanderson 3 года назад +1

    Como faço para entrar em contato com você?

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад

      Olá Joabe, pode me enviar um e-mail: contact@vemto.app

  • @lucaseduardofarias6393
    @lucaseduardofarias6393 2 года назад

    Joel Santana

  • @armandooliveira3712
    @armandooliveira3712 3 года назад

    tiago em ingles se le como "james"..so thats how you shoul present yourself..

    • @tiagorodrigues_br
      @tiagorodrigues_br  3 года назад

      Olá Armando, obrigado pela sugestão... sim, "James" é o equivalente à Tiago em inglês, mas geralmente nome não se traduz, mesmo que você esteja falando em outra linguagem (são comuns traduções em documentos históricos em alguns países, como portugal... mas no geral, no dia a dia, você fala seu nome da forma que ele é pronunciado em sua linguagem nativa mesmo. Se você se chama Akira Toriyama, será Akira no mundo todo :D )

  • @devtiagofranca
    @devtiagofranca 6 месяцев назад

    Deixe um preço mais top pra galera do BR

    • @tiagorodrigues_br
      @tiagorodrigues_br  6 месяцев назад

      Opa Tiago, pode deixar, na v2 vou fazer um esquema mais bacana nos preços