ドキュメントを強化する

Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>

git-svn-id: file:///srv/svn/repo/mai/trunk@52 e410bdd4-646f-c54f-a7ce-fffcc4f439ae
This commit is contained in:
yakumo.izuru 2023-10-18 14:38:36 +00:00
parent d165c6f5fc
commit 72bbcfcfb7
2 changed files with 25 additions and 1 deletions

View File

@ -5,3 +5,27 @@ A privacy friendly frontend to multiple translation engines.
1. SimplyTranslate was founded by [metalune and fattalion](https://codeberg.org/SimpleWeb/SimplyTranslate-Web). It was written in Python. 1. SimplyTranslate was founded by [metalune and fattalion](https://codeberg.org/SimpleWeb/SimplyTranslate-Web). It was written in Python.
2. Fattalion created a Go implementation. 2. Fattalion created a Go implementation.
3. Both metalune and fattalion retired, and they handed SimplyTranslate over to ManeraKai. 3. Both metalune and fattalion retired, and they handed SimplyTranslate over to ManeraKai.
4. Izuru Yakumo The Violet Hermit stole it
### Installation
```shell
% git clone https://git.chaotic.ninja/yakumo.izuru/simplytranslate
% cd simplytranslate
% make
# make install
```
### Setup
For [nginx](https://www.nginx.com) you can use this snippet, this also serves the static resources.
```nginx
location / {
proxy_set_header Host $host;
proxy_pass http://localhost:5000;
}
location /static {
alias /path/to/static/files;
autoindex off;
}
```

View File

@ -128,7 +128,7 @@
</form> </form>
<br><br><br><br><br> <br><br><br><br><br>
<footer class="center"> <footer class="center">
<a href="https://codeberg.org/ManeraKai/simplytranslate">Source code</a> / <a href="https://git.chaotic.ninja/yakumo.izuru/simplytranslate">Modified source code</a> <a href="https://git.chaotic.ninja/yakumo.izuru/simplytranslate">Source code</a>
</footer> </footer>
<script src="/static/script.js"></script> <script src="/static/script.js"></script>
</body> </body>