Updated HTML docs.

This commit is contained in:
Evennia docbuilder action 2023-11-23 19:40:52 +00:00
parent b4fe068f44
commit 6d428d4086
684 changed files with 156 additions and 130 deletions

View file

@ -18,12 +18,18 @@ The first step is to create our new Django *app*. An app in Django can contain
From your game directory, use the following commands:
cd web
cd web
evennia startapp help_system
This creates a new folder `help_system` in your `mygame/` folder. To keep things
tidy, let's move it to the `web/` folder:
mv help_system web (linux)
move help_system web (windows)
> Note: calling the app "help" would have been more explicit, but this name is already used by Django.
This will create a directory named `help_system` under `mygame/web/`. We put it there to keep all web-related things together, but you can organize however you like. Here's how the structure looks:
We put the new app under `web/`t o keep all web-related things together, but you can organize however you like. Here's how the structure looks:
mygame/
...
@ -211,7 +217,7 @@ But what if the user's not logged in? Again, we have different solutions. One
The system should answer:
Created new character anonymous. Use @ic anonymous to enter the game as this character.
So in our view, we could have something like this:
```python