1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gotosocial_ynh.git synced 2024-09-03 19:16:06 +02:00

aupdate disclaimer

This commit is contained in:
OniriCorpe 2022-03-07 21:13:52 +01:00
parent d890fa56fd
commit bbd840d8af

View file

@ -1,12 +1,32 @@
* Any known limitations, constrains or stuff not working, such as (but not limited to): * Any known limitations, constrains or stuff not working, such as (but not limited to):
* requiring a full dedicated domain ? * GoToSocial require a dedicated root domain, eg. gotosocial.domain.tld
* architectures not supported ? * This package is not-working single-sign on or LDAP integration
* not-working single-sign on or LDAP integration ? * This package is currently set to single-instance that means you can run a single GoToSocial instance on a single server.
* the app requires an important amount of RAM / disk / .. to install or to work properly
* etc...
* Other infos that people should be aware of, such as: ## Create and confirm your user
* any specific step to perform after installing (such as manually finishing the install, specific admin credentials, ...)
* how to configure / administrate the application if it ain't obvious You can use the GoToSocial binary to also create, confirm, and promote your user account.
* upgrade process / specificities / things to be aware of ?
* security considerations ? Run the following command to create a new account:
```bash
./gotosocial --config-path ./config.yaml admin account create --username some_username --email some_email@whatever.org --password SOME_PASSWORD
```
In the above command, replace `some_username` with your desired username, `some_email@whatever.org` with the email address you want to associate with your account, and `SOME_PASSWORD` with a secure password.
Run the following command to confirm the account you just created:
```bash
./gotosocial --config-path ./config.yaml admin account confirm --username some_username
```
Replace `some_username` with the username of the account you just created.
If you want your user to have admin rights, you can promote them using a similar command:
```bash
./gotosocial --config-path ./config.yaml admin account promote --username some_username
```
Replace `some_username` with the username of the account you just created.