My question is how to structure the directories when you are creating an app that uses both Flask(backend) and Reactjs (frontend). The default structures for each individual infrastructures are below:
In Flask, the structure is:
.
├── app.py
├── static
│ ├── foo.png
│ └── bar.csv
├── templates
│ ├── Predict.html
│ ├── home.html
│ ├── index.html
│ └── something.js
└── utlities.py
In React apps, the structure (when running create-react-app) is:
.
├── node_modules
├── package-lock.json
├── package.json
├── public
│ ├── favicon.ico
│ ├── index.html
│ ├── logo192.png
│ ├── logo512.png
│ ├── manifest.json
│ └── robots.txt
└── src
├── App.css
├── App.js
├── App.test.js
├── index.css
├── index.js
├── logo.svg
├── serviceWorker.js
└── setupTests.js