mirror of
https://github.com/evennia/evennia.git
synced 2026-03-28 02:36:32 +01:00
Considerable cleanup of installation docs
This commit is contained in:
parent
f7c01c2ee4
commit
ca7bee9d99
38 changed files with 2660 additions and 739 deletions
19
docs/source/Setup/Installation-Non-Interactive.md
Normal file
19
docs/source/Setup/Installation-Non-Interactive.md
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Non-interactive setup
|
||||
|
||||
The first ime you run `evennia start` (just after having created the database), you will be asked
|
||||
to interactively insert the superuser username, email and password. If you are deploying Evennia
|
||||
as part of an automatic build script, you don't want to enter this information manually.
|
||||
|
||||
You can have the superuser be created automatically by passing environment variables to your
|
||||
build script:
|
||||
|
||||
- `EVENNIA_SUPERUSER_USERNAME`
|
||||
- `EVENNIA_SUPERUSER_PASSWORD`
|
||||
- `EVENNIA_SUPERUSER_EMAIL` is optional. If not given, empty string is used.
|
||||
|
||||
These envvars will only be used on the _very first_ server start and then ignored. For example:
|
||||
|
||||
```
|
||||
EVENNIA_SUPERUSER_USERNAME=myname EVENNIA_SUPERUSER_PASSWORD=mypwd evennia start
|
||||
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue