README.adoc 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. = a·muse
  2. apiote <me@apiote.tk>
  3. v0.1.0 (Agrajag) 2019-12-19
  4. :toc:
  5. a·muse is a no-JavaScript frontend for The Movie Database. It is also a system that connects films with books which the former are based on, thanks to using data from Wikidata. Finally, a·muse is also a place to collect ideas which films, books, and series watch or read next, and which of those have already been watched or read.
  6. Primary instance runs at https://amuse.apiote.tk
  7. == Name
  8. The name of the system is ‘a·muse.’ The name of the program, command, any package is ‘amuse.’
  9. Both are pronounced the same–[æˈʔmjuːz].
  10. It’s a play of words—amuse as a verb, and a muse as a goddess.
  11. == Building
  12. To build version 0.1.x, You need:
  13. * `go>=1.11`
  14. * Inkscape
  15. * `cwebp`
  16. * `make` or `mk`
  17. From version 0.2.0, `make` will not be supported, `resvg` will be supported alongside Inkscape.
  18. === Python router
  19. Because `apiote.tk` runs currently on a shared hosting with no possibility of running arbitrary binaries, but with wsgi, a·muse can be built as a Python module and run with a Python router. This only works with `glibc` (https://github.com/golang/go/issues/13492[Github issue]). Furthermore, the shared hosting uses `python==3.7` so a friendly `Dockerfile` is provided.
  20. Build script is only provided in the `mkfile`, not in the `makefile`.
  21. *This is a hack. You are on Your own.*
  22. == Contribute
  23. Contributions are welcome either as merge requests or patches (send patches to `git@apiote.tk`).
  24. If You want to translate a·muse, translate strings in `i18n/default.toml` and request merge, send patch, or share the translated file in any other way. The translated file must be named `tag.toml`, where `tag` is the language tag of the translation. Translations don’t have to be full; a·muse falls back to default (en-GB) when strings are missing.
  25. This project uses https://nvie.com/posts/a-successful-git-branching-model/[nvie’s branching model]. Please request merges to `develop` branch.
  26. == Roadmap
  27. v0.2.0::
  28. * Search and show books
  29. * Show book that film/serie is based on
  30. * Add API
  31. * UI enhancements
  32. * Recommendations
  33. * Last aired episode
  34. v0.3.0::
  35. * Mark to watch, to read
  36. * Mark watched, read
  37. == Licence
  38. ----
  39. amuse Copyright (C) 2019 apiote
  40. This program is free software: you can redistribute it and/or modify
  41. it under the terms of the GNU Affero General Public License as published by
  42. the Free Software Foundation, either version 3 of the License, or
  43. (at your option) any later version.
  44. This program is distributed in the hope that it will be useful,
  45. but WITHOUT ANY WARRANTY; without even the implied warranty of
  46. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  47. GNU Affero General Public License for more details.
  48. You should have received a copy of the GNU Affero General Public License
  49. along with this program. If not, see <https://www.gnu.org/licenses/>.
  50. ----