Thank you for your tutorial. I wonder which extension that helps you type so fast?
@Webcrunch Жыл бұрын
I think you're looking for Emmet which autocompletes some different languages 👍
@rcolon852 жыл бұрын
Thanks for this tutorial! Hey I have a question, after I migrate after creating the first book. I can't see anything on the localhost:3000 ? I've created an api before with localhost:3000/api/v1/ and get a response on postman but when I follow the steps I cant get anything back. What could it be?
@rcolon852 жыл бұрын
Edit: Got it, had to reboot rails server
@jackepner99842 жыл бұрын
It looked like it was added to git without any commands... how did you set that up?
@Pelu6cuerdas2 жыл бұрын
Is it possible to only show certain data in, for example, the index action of the controller and other data in the show action? I want to show more detailed info in show, but with the serializer is always the same
@Pelu6cuerdas2 жыл бұрын
I resolved it. You can create custom serializations!
@pointerish3 жыл бұрын
Very nice. Insane you don't have more views.
@marcosporto74892 жыл бұрын
Awsome video. But i dont know why, bur the --api command doesn't works on may rails 6.1.7. Doens not creates any API controllers or JSON renderings, e etc.. It creates a rails full app. Dont know what to do.. anyone please?
@iamjustine1 Жыл бұрын
maybe you forgot the scaffold part. Once you created the app using --api, there will be no generated api controller or json yet, unless you scaffold. you can also generate your own controller "rails g controller " then you can start your actions