I am new to angular 4 and flask. I am familiar with how flask applications are structured. I am creating a simple to-do to-do list and using angular 4 as the front end. I used to have angularJs, and I just used html files with the angularJS template built into it in the templates folder
flaskapp
|--static
|--js
|--css
|-img
|--templates
|-app.py
Now I'm studying angular 4 and trying to convert the same application to angular 4, but I'm not sure how to integrate the folders created when creating the angular 4 project. For example, when I create the angular 4 project, it generates the src folder and then the folder applications in it, and then component files in it, should I just create the same project in the template folder of my application project in a flask? Please, help.
source
share