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

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