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

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
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
