nova
Is there any way to have access to AWS cli within railway?
We have some self hosted Python packages in AWS and part of the build process is to retrieve a token from AWS, which will then be used to install our private packages. We use the AWS cli for this - is there any way in which we can access the AWS cli within railway?
10 replies
How does a 'self hosted server' actually integrate with railway?
The documentation for a "Self Hosted Server" seems to be pretty sparse:
https://docs.railway.app/deploy/integrations#self-hosted-server
I am looking for a way to be able to deploy my application on my own VPS but still link it to railway and make use of railway features such as easily being able to monitor logs and stop and start the project etc.
Is functionality something that is offered by railway?|
I have installed the railway cli and logged into it. Then, I've linked the self hosted project with an empty service project in railway. I have then run the
railway run
command followed by the start command for my application and my application launched fine, but on the railway web app there doesn't seem to be any logs being sent across or any sign that the self-hosted application is linked.11 replies
How to figure out what my PYTHONPATH environment variable should be
I am getting a
ModuleNotFoundError: No module named
. I do not have this problem when running the applicaiton through Pycharm or through the terminal. I believe I have it in railway, because the sys.path on Railway is different from that on my own machine. How do I figure out the directory dtructure in a deployed railway application so I can modify the PYTHONPATH environment variable in Railway.20 replies