I recently went to write a new blog post for my obviously awesome and frequently updated blog *cough* when I realized that I had not stored the password for my superuser.
Okay, no big deal. I have done this before, I will just create another user and password using Railway's Cli. Oh no, what am I doing wrong?
*many attempts later and a redeploy later*
I found this statement in the Railway Discord Server "Railway run does not SSH into the host machine. It only copies the environment variables from the host machine to your local environment." This wasn't abundantly clear when I read Railway's Cli API Reference it said "The Railway Command Line Interface (CLI) lets you interact with your Railway project from the command line."
Once I realized that this was the case. I utilized Django's make_password function to hash a password and entered a user directly into my database. An easy and quick fix.