๐Ÿ A very simple static Gemini server, now with Titan support!
cpp gemini titan gemini-protocol titan-protocol

docs(readme): move deployment steps up

fuwn.net c7ae1e10 7a93a670

verified
+21 -14
+21 -14
README.md
··· 15 15 16 16 ## Usage 17 17 18 + ### Docker Compose 19 + 20 + A Docker Compose file is already setup [here](./docker-compose.yaml). The only 21 + field which should be modified is the `ports`, if need be. 22 + 23 + ```shell 24 + docker-compose up -d 25 + ``` 26 + 27 + ### Docker 28 + 29 + ```shell 30 + docker run fuwn/maple:latest 31 + ``` 32 + 33 + ### Executable 34 + 35 + 1. Build: `ninja` (requires [Ninja](https://ninja-build.org/)) 36 + 2. Run: `out/maple`, or 37 + `TITAN=1 TITAN_TOKEN=secret TITAN_MAX_SIZE=2048 out/maple` 38 + 18 39 ### Certificates 19 40 20 41 Before any possible method of usage; you must generate or use a preexisting ··· 61 82 Takes an integer. 62 83 63 84 Default to `1024`. 64 - 65 - ### Docker Compose 66 - 67 - A Docker Compose file is already setup [here](./docker-compose.yaml). The only 68 - field which should be modified is the `ports`, if you have to. 69 - 70 - `$ docker-compose up -d` (requires [Docker](https://www.docker.com/) and/ or 71 - [Docker Compose](https://docs.docker.com/compose/)) 72 - 73 - ### Executable 74 - 75 - 1. Build: `ninja` (requires [Ninja](https://ninja-build.org/)) 76 - 2. Run: `out/maple`, or 77 - `TITAN=1 TITAN_TOKEN=secret TITAN_MAX_SIZE=2048 out/maple` 78 85 79 86 ### Hacking 80 87