adventau
HOBBYOP
9 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
9 months ago
u need to right click and add a storage to your app
9 months ago

9 months ago
then attach it to your service (flask oauth) and set the directory you need to store it at respectively, ie /app/oauth
9 months ago
thats any path you need to allow your flask to write into it basically
9 months ago
so it can be like /flask/oauth, /oauth, etc
9 months ago
in your flask app then write into that
