diff --git a/demo/README.md b/demo/README.md index 30f0e5b..6fd9d3c 100644 --- a/demo/README.md +++ b/demo/README.md @@ -36,6 +36,8 @@ By default, the application will: - Use the `./storage/database` directory to store the data. - Use SQLite as the database engine. +> NOTE: First thing you should do is to create the `admin` user. You can do it by signing up . First registered user is the only `admin` user. + After starting the application you should see these running containers: ```s @@ -47,3 +49,10 @@ a8bf2370e427 torrust/index-gui:develop "/usr/local/bin/entrypoint.sh" 5 se 9e72b195abf1 mysql:8.0 "docker-entrypoint.s…" 5 seconds ago Up 4 seconds (healthy) 0.0.0.0:3306->3306/tcp, :::3306->3306/tcp, 33060/tcp torrust-mysql-1 dd8db76545eb dockage/mailcatcher:0.8.2 "entrypoint mailcatcher" 5 seconds ago Up 4 seconds 0.0.0.0:1025->1025/tcp, :::1025->1025/tcp, 0.0.0.0:1080->1080/tcp, :::1080->1080/tcp torrust-mailcatcher-1 ``` + +## Documentation + +- Tracker: +- Index: +- Config: +- GUI: diff --git a/demo/config-index.local.toml b/demo/config-index.local.toml index d1a7fd9..24c9c81 100644 --- a/demo/config-index.local.toml +++ b/demo/config-index.local.toml @@ -7,8 +7,8 @@ schema_version = "2.0.0" #threshold = "off" #threshold = "error" #threshold = "warn" -threshold = "info" -#threshold = "debug" +#threshold = "info" +threshold = "debug" #threshold = "trace" [tracker] @@ -23,3 +23,6 @@ connect_url = "sqlite:///var/lib/torrust/index/database/torrust_index_demo.db?mo [mail] server = "mailcatcher" port = 1025 + +[registration] +[registration.email] \ No newline at end of file