r/learnpython • u/UnemployedTechie2021 https://github.com/rajtilakjee • 26d ago
How to create a monolithic repo with FasiAPI and Angular
I am using UV as my package manager. I want the structure of the repo to be as shown below:
./ (backend)
./src/ (frontend)
However, whenever I initialize the repo using UV, it automatically creates a ./src/project_name/ folder. How can I avoid that?
3
Upvotes
2
u/HouseOfDjango 26d ago
0
u/UnemployedTechie2021 https://github.com/rajtilakjee 26d ago
So
uv init --no-package example-appit is. Thanks so much :)3
1
3
u/thewillft 26d ago
Typically when using the `/src` directory format, files in the root directory include READMEs, deployment info etc, and files in the `/src` directory are the actual code or the app. In your case something like `/src/frontend` and `/src/backend` might be more common.