mirror of
https://github.com/YunoHost-Apps/misskey_ynh.git
synced 2024-09-03 19:46:03 +02:00
Rework ADMIN.md / PRE_INSTALL.md, taking inspiration from Glitchsoc
This commit is contained in:
parent
7c22f5210e
commit
25f070b6dd
4 changed files with 51 additions and 24 deletions
17
doc/ADMIN.md
17
doc/ADMIN.md
|
@ -1,16 +1,9 @@
|
|||
### Important points to read before installing
|
||||
## Update
|
||||
|
||||
- The first account created will be an admin user and will have all the admin rights.
|
||||
|
||||
Using screen in case of disconnects
|
||||
**`screen` (or `tmux`) can be used to make sure your session is not interrupted in case of connection problems.**
|
||||
See [tutorial](https://www.howtogeek.com/662422/how-to-use-linuxs-screen-command/) for more background information.
|
||||
|
||||
```
|
||||
sudo apt-get install screen
|
||||
screen
|
||||
sudo yunohost app install https://github.com/YunoHost-Apps/misskey_ynh.git
|
||||
```
|
||||
Recover after disconnect:
|
||||
```
|
||||
screen -d
|
||||
screen -r
|
||||
$ screen
|
||||
$ sudo yunohost app upgrade __APP__
|
||||
```
|
||||
|
|
|
@ -1,16 +1,9 @@
|
|||
### Points importants à lire avant l'installation
|
||||
## Mise à jour
|
||||
|
||||
- Le premier compte créé sera un utilisateur administrateur et disposera de tous les droits d'administrateur.
|
||||
|
||||
Utiliser *screen* en cas de déconnexion
|
||||
**`screen` (ou `tmux`) peut être utilisé pour vous assurer que votre session n'est pas interrompue en cas de problème de connection.**
|
||||
Consultez ce [tutoriel](https://www.howtogeek.com/662422/how-to-use-linuxs-screen-command/) pour plus de détails.
|
||||
|
||||
```
|
||||
sudo apt-get install screen
|
||||
screen
|
||||
sudo yunohost app install https://github.com/YunoHost-Apps/misskey_ynh.git
|
||||
```
|
||||
Récupérer après déconnexion :
|
||||
```
|
||||
screen -d
|
||||
screen -r
|
||||
$ screen
|
||||
$ sudo yunohost app upgrade __APP__
|
||||
```
|
||||
|
|
20
doc/PRE_INSTALL.md
Normal file
20
doc/PRE_INSTALL.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
### Important points to read before installing
|
||||
|
||||
1. **Misskey** require a dedicated **root domain**, eg. misskey.domain.tld
|
||||
2. You can't change the domain once installed.
|
||||
3. The user choosen during the installation is automatically created in Misskey with admin rights
|
||||
|
||||
## Using *screen* in case of disconnect
|
||||
|
||||
Misskey's install can be long, depending on the server performance. To prevent the process from being stopped because of disconnect, you can use a `screen` session
|
||||
```
|
||||
$ sudo apt-get install screen
|
||||
$ screen
|
||||
$ sudo yunohost app install misskey
|
||||
```
|
||||
|
||||
Recover after disconnect:
|
||||
```
|
||||
$ screen -d
|
||||
$ screen -r
|
||||
```
|
21
doc/PRE_INSTALL_fr.md
Normal file
21
doc/PRE_INSTALL_fr.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
## Points importants à lire avant l'installation
|
||||
|
||||
1. **Misskey** nécessite un **nom de domaine** dédié, par exemple : misskey.domain.tld
|
||||
2. Il est impossible de changer le nom de domaine après l'installation.
|
||||
3. L'utilisateur sélectionné pendant l'installation sera créé automatiquement dans Misskey avec des droits d'administration.
|
||||
|
||||
## Utilisation de *screen* en cas de déconnexion
|
||||
|
||||
L'installation de Misskey peut être longue, selon les performances du serveur. Pour éviter que le processus soit interrompu par une déconnexion, on peut utiliser `screen`.
|
||||
|
||||
```
|
||||
$ sudo apt-get install screen
|
||||
$ screen
|
||||
$ sudo yunohost app install misskey
|
||||
```
|
||||
Récupérer l'installation après une deconnection :
|
||||
```
|
||||
$ screen -d
|
||||
$ screen -r
|
||||
```
|
||||
|
Loading…
Add table
Reference in a new issue