Python App to Railway Troubleshooting

Hello! I have a python app and get hub that I have uploaded to Railway and I’m having much trouble getting the API to work. I would appreciate any help if possible. If you would like to try the package and see if you can get it to work this is the link to my GitHub : https://github.com/verblead/YOURVOICE.AI.git Respectfully, Kevin Luke
28 Replies
Percy
Percy3mo ago
Project ID: 529b6fa1-7c11-480b-81b2-5654cfb2f35c
VERBLEAD
VERBLEAD3mo ago
529b6fa1-7c11-480b-81b2-5654cfb2f35c
Brody
Brody3mo ago
what have you tried, what isn't working, what are the issues and errors involved? that repo is also private
VERBLEAD
VERBLEAD3mo ago
I’ll make it public My app.py folder says it keeps crashing after deployment It should be public now
Adam
Adam3mo ago
What is the error that the logs say?
Adam
Adam3mo ago
As a general rule, we don't run users projects. You should be able to retrieve the logs and send them here.
VERBLEAD
VERBLEAD3mo ago
I put it in my bookmark and then clicked it while on railway, but nothing happened
Brody
Brody3mo ago
please follow the 3 instructions
VERBLEAD
VERBLEAD3mo ago
I did
Brody
Brody3mo ago
please send the log file then
VERBLEAD
VERBLEAD3mo ago
I don’t see anywhere that it created a log file
Brody
Brody3mo ago
your browser will download a file
VERBLEAD
VERBLEAD3mo ago
deployment_logs_yourvoice.ai_1714961521.log I tried copying into my phone. I’m opening my computer app for discord
Brody
Brody3mo ago
ModuleNotFoundError: No module named 'six'
ModuleNotFoundError: No module named 'six'
VERBLEAD
VERBLEAD3mo ago
Yep I've added multiple time
Brody
Brody3mo ago
how have you added it?
VERBLEAD
VERBLEAD3mo ago
VS CODE and the git push
Brody
Brody3mo ago
im sorry but that doesn't answer the question
VERBLEAD
VERBLEAD3mo ago
pip install six
Brody
Brody3mo ago
that installs the module to your computer you need to be using a requirements.txt file
VERBLEAD
VERBLEAD3mo ago
I have that
Brody
Brody3mo ago
it needs to contain all the modules your app needs
VERBLEAD
VERBLEAD3mo ago
blinker==1.8.1 click==8.1.7 Flask==3.0.3 gunicorn==22.0.0 itsdangerous==2.2.0 Jinja2==3.1.3 MarkupSafe==2.1.5 packaging==24.0 Werkzeug==3.0.2 What is the one for six
Adam
Adam3mo ago
PyPI
six
Python 2 and 3 compatibility utilities
Adam
Adam3mo ago
running pip list will give you all your installed packages. Find the one for six and copy the version.
VERBLEAD
VERBLEAD3mo ago
six 1.16.0 Thank you I'll give it a shot