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

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

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

Eugene Oskin

October 05, 2018
Tweet

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