Upgrade to Pro — share decks privately, control downloads, hide ads and more …

REST API. Django, Ruby on Rails, Play! Framework

Sponsored · SiteGround - Reliable hosting with speed, security, and support you can count on.

REST API. Django, Ruby on Rails, Play! Framework

Avatar for Eugene Oskin

Eugene Oskin

October 05, 2018

More Decks by Eugene Oskin

Other Decks in Programming

Transcript

  1. $ tree . ├── Dockerfile ├── Makefile ├── animals/ ├──

    db.sqlite3 ├── docker-compose.yml ├── manage.py ├── pet/ ├── requirements/ ├── run.sh └── tox.ini Django, DRF
  2. $ tree . ├── ... └── animals/ ├── __init__.py ├──

    settings.py ├── urls.py └── wsgi.py Django, DRF
  3. $ tree . ├── ... └── pet/ ├── __init__.py ├──

    admin.py ├── migrations/ ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py Django, DRF
  4. RoR, Grape $ tree . ├── Dockerfile ├── Gemfile ├──

    Makefile ├── Rakefile ├── docker-compose.yml ├── app/ ├── bin/ ├── config/ ├── db/ ├── lib/ ├── run.sh └── test/
  5. . ├── ... ├── app/ │ ├── api/ │ │

    └── animal/ │ │ ├── api.rb │ │ └── entities.rb │ ├── assets/ │ ├── controllers/ │ ├── dashboards/ │ ├── helpers/ │ ├── models/ │ └── views/ RoR, Grape
  6. . ├── ... └── test/ ├── controllers/ ├── factories.rb ├──

    fixtures/ ├── helpers ├── integration ├── models/ └── test_helper.rb RoR, Grape
  7. Outcome I learnt how easy Development must be I learnt

    how to think in the FP way I found exercism.io