Matou0014 / docs

GitBook documentation
0 stars 0 forks source link

Graveyard #2

Open Matou0014 opened 2 years ago

Matou0014 commented 2 years ago

Texts that I have written that I no longer use but that could be useful to me in the future.

  1. Meta tags.

    Have a description of your board shown when sharing your board.

File to edit; https://github.com/feedbacky-project/app/blob/master/client/public/index.html

Structure tree

app
├─ .git
│   └── ...
├── .github
│   └── ...
├── client
│   ├── nginx
│   │   └── ...
│   ├── public
│   │   ├─ favicon.icio
│   │   ├─ index.html
│   │   ├─ logo192.png
│   │   ├─ logo512.png
│   │   ├─ manifest.json
│   │   └─ robots.txt
│   └── src
│       └─ ...
└─── server
     └── ...
  1. Mail templates

    Change the looks of Feedbacky's mails.

File to edit; https://github.com/feedbacky-project/app/tree/master/server/src/main/resources/mail_templates

Customize email templates Head over [to this folder](https://github.com/feedbacky-project/app/tree/master/server/src/main/resources/mail_templates) and edit HTML of files as you wish.
Be careful not to replace any placeholders like ${host.address}
The mail template directory is situated in app/server/src/main/ressources/mail_templates.

Structure tree

app
├── .git
│   └── ...
├── .github
│   └── ...
├── client
│   ├── nginx
│   │   └── ...
│   ├── public
│   │   └── ...
│   └── src
│       └─ ...
└─── server
     ├── gradle/wrapper
     │   └── ...
     └── src/main
         └── ressources
             └── mail_templates 
Matou0014 commented 2 years ago
Address Format
Using an invalid IP address format will stop you from accessing your own instance. 
Let's say that our IP address is 188.222.333.22, the valid format will look like this;  

Invalid
Do not leave a trailing (/) slash at the end;
http://188.222.333.22:8090/ 
Invalid
The protocol (http) is missing;
88.222.333.22:8090
Invalid
The port is missing (can be skipped if you use a domain);
http://188.222.333.22

Valid
The protocol and port are present with no trailing slash;
http://188.222.333.22:8090