diff --git a/docs/apps/quickstart.md b/docs/apps/quickstart.md index d605d515..fdcaef56 100644 --- a/docs/apps/quickstart.md +++ b/docs/apps/quickstart.md @@ -47,4 +47,8 @@ TODO TODO: tfrpc +Apps can interact with Tilde Friends using tfrpc. + +Read + TODO: sharing apps diff --git a/docs/apps/tfrpc.md b/docs/apps/tfrpc.md new file mode 100644 index 00000000..44edd211 --- /dev/null +++ b/docs/apps/tfrpc.md @@ -0,0 +1,8 @@ +# RPC documentation + +Quick start + +Complete documentation + + +TODO diff --git a/docs/building.md b/docs/building.md index 0206702d..799170ba 100644 --- a/docs/building.md +++ b/docs/building.md @@ -47,6 +47,7 @@ Now that you have a binary, head over to . ### The compiler throws an error and I can't build the binary +You can choose to tell the compiler to ignore warnings. Open `GNUMakefile` and edit the CFLAGS environment variable around line 50. For example given this error: @@ -74,3 +75,4 @@ CFLAGS += \ ``` Now the compiler will ignore this error and *should* continue building anyways. +This is a dirty hack to get Tilde Friends to compile and you should not propose to keep this flag on. Instead, open a bug report. diff --git a/docs/faq.md b/docs/faq.md index 27ca2a45..c8e6f4fc 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -7,3 +7,10 @@ See . ### The compiler throws an error and I can't build the binary See . + +### Where is my database located ? + +TODO + + + diff --git a/docs/guidelines/documentation-guidelines.md b/docs/guidelines/documentation-guidelines.md index d2391201..14394530 100644 --- a/docs/guidelines/documentation-guidelines.md +++ b/docs/guidelines/documentation-guidelines.md @@ -1,7 +1,6 @@ # Documentation guidelines This document defines the rules used to write documentation in order to make it more consistent. - This documentation is a living document and so are it's rules; you are free to propose changes but in the meantime, please stick to them. The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC 2119](https://www.rfc-editor.org/rfc/rfc2119/). @@ -9,7 +8,6 @@ The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "S ## File naming Files SHOULD be named using [kebab-case](https://www.freecodecamp.org/news/snake-case-vs-camel-case-vs-pascal-case-vs-kebab-case-whats-the-difference/#kebab-case). - Their names should be meaningful and SHOULD not conflict with other files in other directories: > Example: this document is named `docs/guidelines/documentation-guidelines.md` instead of `docs/guidelines/documentation.md` because it could cause confusion with `docs/documentation.md`. @@ -49,13 +47,13 @@ The documentation should therefore be acessible and usefule to most people inter You MAY use one line per sentence. -2. Lines ending with an `inline code block` SHOULD NOT end with a period. +2. Lines ending with an `inline code block` SHOULD NOT end with a period to make copy-pasting easier. -> Example: To build in docker, `docker build .` + > Example: To build in docker, `$ docker build .` -NB: this does not apply to file names or other text that are not meant to be copy-pasted. + NB: this does not apply to file names or other text that are not meant to be copy-pasted. -> Example: this document is named `docs/guidelines/documentation-guidelines.md` instead of `docs/guidelines/documentation.md` because it could cause confusion with `docs/documentation.md`. + > Example: this document is named `docs/guidelines/documentation-guidelines.md` instead of `docs/guidelines/documentation.md` because it could cause confusion with `docs/documentation.md`. 3. Commands SHOULD start with a caret: (is that the tehnical term ?) diff --git a/docs/running.md b/docs/running.md index 6a0443d1..718b1c9d 100644 --- a/docs/running.md +++ b/docs/running.md @@ -6,7 +6,7 @@ The binaries should appear at `out/debug/tildefriends` and `out/release/tildefri For Android, iOS and Windows: TODO -You can now start the server by running `./out/debug/tildefriends` or `./out/release/tildefriends`. +You can now start the server by running `$ ./out/debug/tildefriends` or `$ ./out/release/tildefriends`. By default, running the built `tildefriends` executable will start a web server at . `$ tildefriends -h` lists further options.