1
I am with a project to develop an Android app, using Phonegap + jQueryMobile, I have already managed to create the interface, change screens and etc. Now comes the hard part for me: the Backend :(
I will quote what I need to do and if possible, I would like suggestions, so that what I thought might work, and what I need to study and how I would have a smaller learning curve.
- Start screen, will request login and password
- In the sequence, a list of people will appear, obtained through the server
- In this listing, I will have options to send notifications to those responsible for the people on the list
- In another client app with phonegap, I need this notification to reach the responsible
I believe that to do this, I would have to create an "admin" with registration of the people who will log in, with the listing of the people who should appear on the list and something that relates those responsible for receiving the notifications.
Recently I saw a little about Ruby on Rails and I found the learning curve interesting, it would be possible to create this application, containing the part of Backend with Ruby?
Cassius, there are many variables involved in this doubt, which makes a possible answer quite broad. What you will need is to read a little about webservice (Restful, for example), because your application will make data requests to it. After you develop this webservice, ai yes you will get into these 4 points cited, which you can ask separately if you have difficulty finding a solution, have any doubt or error in the development.
– Paulo Rodrigues
Yes it is possible and it is quite common to do this type of backend with Rails.
– Alex Takitani
Thanks a lot Paulo and Alex, sure helped me a lot! Great hug!
– Cássio Lopes
Sometimes Rails is too big to make a Restful API like you want (it’s like using a cannon to kill a fly), I would recommend you take a look at other Ruby frameworks like Sinatra, Grape or Cuba and continue taking advantage of the Gems you would normally use in Rails.
– iTSangar
About @iTSangar I will certainly do a research on the Frameworks informed! Thank you very much!
– Cássio Lopes