deploying storage
adventau
FREEOP

3 months ago

Hi! I have a Python project on Railway that runs both a Discord bot and a Flask OAuth server. The OAuth flow stores authorized users in a JSON file, but every time I redeploy, that JSON resets and the user data is lost. How can I persist this file across deployments?

10 Replies

3 months ago

u need to right click and add a storage to your app


3 months ago

1448544227381481500


3 months ago

then attach it to your service (flask oauth) and set the directory you need to store it at respectively, ie /app/oauth


adventau
FREEOP

3 months ago

1448544401101029600


adventau
FREEOP

3 months ago

okok


adventau
FREEOP

3 months ago

ill see if i can figure that out


3 months ago

thats any path you need to allow your flask to write into it basically


3 months ago

so it can be like /flask/oauth, /oauth, etc


3 months ago

in your flask app then write into that


adventau
FREEOP

3 months ago

thanks a lot got it done


Loading...