Flask + Angular base project
To begin with any Salesforce integration projects we need any third-party service that will use SF API. In my case I stop my choice on Flask(Python) for backend and Angular for frontend. As for me Flask is the best solution for small services as it is small, modular and fast enough. As an option can be also Pyramyd and Django, but first is quite tricky and second one too big for simple projects. With Flask I can build first prototype quickly. I don't want to say other solutions are bad - the right choice is up to you (maybe I will try to build same project with Django latter and we can compare both approaches). Flask - https://flask.palletsprojects.com/en/1.1.x/ it can be found in the Pallets Project resource (with many other useful libs) - https://palletsprojects.com/ Angular - https://angular.io/ Let start with project structure. We need to setup Flask server and also setup Angular sub-project. 1. Create new folder for Project. BACKEND: ...