How to do I change my Python Version on Railway Up and How Do I Access the Project files
I have a Flask App which was working perfectly fine n my local machine, last night i pushed it to Railway, its giving some errors I suspect its the python version, the version I was using on localhost is 3.10, the build version is 3.8
Also I have an sqlite database in the project directory, how will i access the project files so that i will see the databse changes and avoiding memory leaks
Solution:Jump to solution
How to do I change my Python Versionhttps://nixpacks.com/docs/providers/python#setup
How Do I Access the Project filesfile access would have to have been built into your app, and container storage is not persistent, theres no way of accessing the filesystem after the deployment has been made...
8 Replies
Project ID:
2e76ad14-b13d-4719-8bc7-53e709a4a729
2e76ad14-b13d-4719-8bc7-53e709a4a729
Solution
How to do I change my Python Versionhttps://nixpacks.com/docs/providers/python#setup
How Do I Access the Project filesfile access would have to have been built into your app, and container storage is not persistent, theres no way of accessing the filesystem after the deployment has been made
Thanks Brody, so there is no kind of SSH Access or something like what Render offers
there is no ssh
and frankly if you need ssh for the things youd typically deploy on railway, you may be doing something wrong
Ok thanks, I have a sqlite database which was inside the project directory which i would want to see database changes, any advice for me or whats the right thing to do?
switch to postgres
Ok thanks lemme check that out,