summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@amadeus.com>2018-04-30 13:31:28 +0200
committerJoffrey Bion <joffrey.bion@amadeus.com>2018-04-30 13:32:07 +0200
commitf9f315545738d108d2323f1447b9b6366c906dcf (patch)
tree375867ef9b8fb4d57545fae4a8b8159e63a73371 /doc
parentAdd flow prop types in scene components (diff)
downloadseven-wonders-f9f315545738d108d2323f1447b9b6366c906dcf.tar.gz
seven-wonders-f9f315545738d108d2323f1447b9b6366c906dcf.tar.bz2
seven-wonders-f9f315545738d108d2323f1447b9b6366c906dcf.zip
History entry about Livedoc
Diffstat (limited to 'doc')
-rw-r--r--doc/decisions_history.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/decisions_history.md b/doc/decisions_history.md
index fd8d9431..1ae2cdd8 100644
--- a/doc/decisions_history.md
+++ b/doc/decisions_history.md
@@ -1,5 +1,18 @@
# Technical decisions and issues log
+## 2017.08-2018.04 Livedoc development
+[@joffrey-bion][1] — :key: *API, Documentation*
+
+Not much has been done on the Seven Wonders project for a while, because I stopped to build
+[Livedoc](https://joffrey-bion.github.io/livedoc/).
+I now have a decent and usable documentation generation tool, which requires almost no configuration at all.
+
+It still lacks a couple features:
+- Specialized STOMP endpoints presentation (they currently are presented as HTTP endpoints)
+- Client generation (especially Flow/TS type defs, bonus for the WebSocket client)
+
+I feel like we're not far from having something very useful now.
+
## 2017.05.25-28 Flow type-checking + ImmutableJS
[@joffrey-bion][1] — :key: *Frontend*
@@ -18,7 +31,7 @@ removes one of the biggest downsides I felt about ImmutableJS.
Of course, there is still the problem of debugging immutable structures in the console, but I guess we can deal with
that for now. Here we are, back to Immutable JS.
-## 2017.05.25-27 Web socket integration tests
+## 2017.05.25-27 Web socket integration tests - Jackstomp
[@joffrey-bion][1] — :key: *Backend, Tests*
Unit tests are great, but only check individual components. To build a more robust test suite, we needed to add
bgstack15