source: code/trunk/README.md@ 52

Last change on this file since 52 was 52, checked in by yakumo.izuru, 20 months ago

ドキュメントを強化する

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

File size: 833 bytes
RevLine 
[9]1## SimplyTranslate
[50]2A privacy friendly frontend to multiple translation engines.
[1]3
[30]4### History
[42]51. SimplyTranslate was founded by [metalune and fattalion](https://codeberg.org/SimpleWeb/SimplyTranslate-Web). It was written in Python.
[30]62. Fattalion created a Go implementation.
[50]73. Both metalune and fattalion retired, and they handed SimplyTranslate over to ManeraKai.
[52]84. Izuru Yakumo The Violet Hermit stole it
9
10### Installation
11
12```shell
13% git clone https://git.chaotic.ninja/yakumo.izuru/simplytranslate
14% cd simplytranslate
15% make
16# make install
17```
18
19### Setup
20For [nginx](https://www.nginx.com) you can use this snippet, this also serves the static resources.
21
22```nginx
23location / {
24 proxy_set_header Host $host;
25 proxy_pass http://localhost:5000;
26}
27location /static {
28 alias /path/to/static/files;
29 autoindex off;
30}
31```
Note: See TracBrowser for help on using the repository browser.