Simple money exchange web-service
>> make build-init
During building up you'll be asked about superuser credentials
- please, provide a username which equal to valid email there
to be able to log in as system account via GUI.
(like [email protected] and [email protected])
urls for access:
- http://127.0.0.1:8082 - is service GUI
- http://127.0.0.1:8082/admin/ - is Django admin
-
PyCharm IDE
It brings us a lot of features and integration-wise things, which makes the development more comfortable.
-
Django as a basic framework for implementing backend with REST API
Because it most friendly and powerful framework I worked ever. It might be a bit overkill for that prototype, but it makes sense in case of service growing.
-
ReactJS for providing frontend GUI using REST API
Nowadays, I'm very interested in that library and that direction of frontend development at all. I've just started to learn it, so sorry for frontend implementation :)
-
Docker-compose + webpack + Makefile for building/debugging/running the project inside a Docker container
In all my current projects we use it. Kinda 'Must have'. Especially I'm excited about Docker <-> PyCharm integration. Makefile saves a lot of time for debugging and other stuff and all it via one entry point
-
Git as VCS
No comments
-
Prettier and flakes for keeping code clean
No comments
-
PostgreSQL DB for storing data
It overkill for prototype too. But I use it because It's the best choice for high-load and growing web-services.
-
Using multiple branchs like 'epik-...' -> 'dev' -> 'master'
No reason to use it for writing a prototype in several commits.
-
Documentation and docstrings
I've saved my time on it :) Ofc there are should be two docs: for REST API and rest stuff
-
Unit tests
The same reason as above (But usually I do strong test coverage for almost each 'pull request')
-
Configurating for production
No reason to do it for a test prototype. Many DevOps activities there. In my teams, we have DevOps guys for it :)
-
Sentry, Kibana, New Relic ...
Kinda `Must have`-services, but It's too much, again...