Changeset 52 in code for trunk


Ignore:
Timestamp:
Oct 18, 2023, 2:38:36 PM (20 months ago)
Author:
yakumo.izuru
Message:

ドキュメントを強化する

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

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/README.md

    r50 r52  
    662. Fattalion created a Go implementation.
    773. Both metalune and fattalion retired, and they handed SimplyTranslate over to ManeraKai.
     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```
  • trunk/views/index.html

    r51 r52  
    129129    <br><br><br><br><br>
    130130    <footer class="center">
    131       <a href="https://codeberg.org/ManeraKai/simplytranslate">Source code</a> / <a href="https://git.chaotic.ninja/yakumo.izuru/simplytranslate">Modified source code</a>
     131      <a href="https://git.chaotic.ninja/yakumo.izuru/simplytranslate">Source code</a>
    132132    </footer>
    133133    <script src="/static/script.js"></script>
Note: See TracChangeset for help on using the changeset viewer.