From a4a356dec74fb876f088506472fef848b1b1bdaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Beausoleil?= Date: Tue, 8 Nov 2016 13:54:17 +0000 Subject: [PATCH] Minor rewording in docs --- doc/01_decision_making_process.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/01_decision_making_process.markdown b/doc/01_decision_making_process.markdown index 025e542..c368f7a 100644 --- a/doc/01_decision_making_process.markdown +++ b/doc/01_decision_making_process.markdown @@ -34,10 +34,10 @@ Being unsatisfied with the sleep tracker apps I used previously, I chose to writ

While I'm testing, I'm fine with Heroku's free dyno that sleeps. Now that I've opened the can of worms and I'm showing the app to other people, I'll pay for a hobby plan, for a month or two. I'll see how that goes.

-
Multi-tenant or single user?
+
Multitenant or single user?
-

That was a fun decision! Going single user meant that I would be alone to pay for the app's hosting. If I went multi-tenant, I could have a "product" that other people could use, and maybe even donate. In the end, even if I was the sole user, I chose to go multi-tenant, for the learning experience. Designing for other people is different than designing for oneself only.

-

Being multi-tenant did not preclude going single-user: simply hide the instance behind a Basic Auth wall and that's it.

+

That was a fun decision! Going single user meant that I would be alone to pay for the app's hosting. If I went multitenant, I could have a "product" that other people could use, and maybe even donate. In the end, even if I was the sole user, I chose to go multitenant, for the learning experience. Designing for other people is different than designing for oneself only.

+

Being multitenant did not preclude going single-user: simply hide the instance behind a Basic Auth wall and that's it.

Real notion of a user or fully anonymous?