What is the DJANGO_SUPERUSER_PASSWORD enviroment variable for? #3240
-
I would like to make an AWS Fargate service to run the application. I need to map over the environment variables to accomplish this. However, I can't find the source of this environment variable. It does not appear to be in the
I'm not sure if this should reference a pre-existing value, or if it will be used to declare the password. Can I have some background on this variable? Secondly, will Lastly, does the dev-team recommend any configurations for this sort of set up? Thanks! Edit: I am referring to this docker-compose file as my source. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
The For production, I do think you'd want to have the
I'm quite curious about your setup on Fargate. Will you also use RDS for the DB? I've considered using a similar setup for some of our internal installations, but it seems like kind of overkill. What scale are you planning for? I.e., how many users? Please let me know if you have more questions. |
Beta Was this translation helpful? Give feedback.
-
Thanks @mathemancer. Do you have any recommendations for minimum cpu and memory? |
Beta Was this translation helpful? Give feedback.
The
DJANGO_SUPERUSER_PASSWORD
variable would let you set a password via environment variable. It's not needed in your case: On the first run, the first time you go to the page, it'll ask you to set up an initial user. This is my recommendation.For production, I do think you'd want to have the
caddy-container
. Especially if you're planning to expose the installation to the internet. It:https
).I'm quite curious about your setup on Fargate. Will you also use RDS for the DB? I've considered using a similar setup for some of our internal installations, but it seems like kind of ov…