python: can't open file 'manage.py'.Django api failed deployment

Rrayanthecoder5/7/2023
my django deployment in railway was successful, but i had many of these errors:python: can't open file 'manage.py': [Errno 2] No such file or directory . These are resulting in 503 errors
Rrayanthecoder5/7/2023
ea29d611-6cfa-40d0-b5b7-c8e81af2bc83
Bbrody5/7/2023
here's a railway provided django template for you to reference
https://github.com/railwayapp-templates/django
Rrayanthecoder5/7/2023
@Brody what about a django api?
Bbrody5/7/2023
#🛂|readme #5
Rrayanthecoder5/7/2023
sorry but i am deploying a django api? what should i do
Bbrody5/7/2023
here's a railway provided django template for you to reference
https://github.com/railwayapp-templates/django
add your api routes however you like
Rrayanthecoder5/7/2023
kk also my manage.py does not open, may you see my github directory?
Bbrody5/7/2023
your folder structure is wrong
so, once again, please reference this django template
https://github.com/railwayapp-templates/django
Rrayanthecoder5/7/2023
yes but there is static files and i dont have them since it is an api
Bbrody5/7/2023
omit the parts you don't need, just use it as a guide for how your app should be setup and structured
Rrayanthecoder5/7/2023
ok thank you
Rrayanthecoder5/7/2023
Rrayanthecoder5/7/2023
3 minutes after starting my app, it crashed. can you identify the error (using railway.json simply results in "no start command found"
Rrayanthecoder5/7/2023
Bbrody5/7/2023
^
Rrayanthecoder5/7/2023
i cant change my project's structure like that else everything will break.
Rrayanthecoder5/7/2023
i've placed requirements.txt in project_dium> and my settings.py is placed in project_dium>backend>main_api. can you check my github and tell me what to do?
Bbrody5/7/2023
if you correctly structure your app, stuff will break?
Rrayanthecoder5/7/2023
well it is my first time deploying a django api and my django structure is way different than others.
Bbrody5/7/2023
then once again, please reference the template i linked to see how a django app should be structured
Rrayanthecoder5/7/2023
but my problem is that i cant take reference from this one since mine is different. i have my root directory: project_dium . then backend (where manage.py is) and main_api were settings.py is
Bbrody5/7/2023
how many total apps do you have in this project
Rrayanthecoder5/7/2023
5
Bbrody5/7/2023
are they all django apps
Rrayanthecoder5/7/2023
yes
Bbrody5/7/2023
do you need to run them all
Rrayanthecoder5/7/2023
yes
Bbrody5/7/2023
well you can only easily run one app per service
Rrayanthecoder5/7/2023
so how can I run the five of them
Bbrody5/7/2023
your 5 django apps would need to be separated out into their own root folders, then you create 5 different services and set the root directory appropriately for each service
Bbrody5/7/2023
a monorepo is what its called
Rrayanthecoder5/7/2023
kk thank you