12factors.md format fixed
This commit is contained in:
parent
1956e4aa5a
commit
4d6324e328
1 changed files with 12 additions and 12 deletions
24
12factors.md
24
12factors.md
|
@ -1,19 +1,19 @@
|
||||||
techrec tries to follow [The Twelve Factors](http://12factor.net/), but it's
|
techrec tries to follow [The Twelve Factors](http://12factor.net/), but it's
|
||||||
still not perfect
|
still not perfect
|
||||||
|
|
||||||
**Codebase**: YES
|
* **Codebase**: YES
|
||||||
**Dependencies**: YES, ffmpeg must be done manually
|
* **Dependencies**: YES, ffmpeg must be done manually
|
||||||
**Config**: ALMOST: the environment contains the path for the config file
|
* **Config**: ALMOST: the environment contains the path for the config file
|
||||||
**Backing services**: there are none, so YES
|
* **Backing services**: there are none, so YES
|
||||||
**Build, release, run**: YES
|
* **Build, release, run**: YES
|
||||||
**Processes**: ALMOST; the process are not completely stateless, as the job
|
* **Processes**: ALMOST; the process are not completely stateless, as the job
|
||||||
dispatcher is in them
|
dispatcher is in them
|
||||||
**Port binding**: YES
|
* **Port binding**: YES
|
||||||
**Concurrency**: NO; as in Processes, the job dispatcher is a violation
|
* **Concurrency**: NO; as in Processes, the job dispatcher is a violation
|
||||||
**Disposability**: YES
|
* **Disposability**: YES
|
||||||
**Dev/prod parity**: YES
|
* **Dev/prod parity**: YES
|
||||||
**Logs**: YES; but accesslog is written to stderr
|
* **Logs**: YES; but accesslog is written to stderr
|
||||||
**Admin processes**: YES, using cli.py
|
* **Admin processes**: YES, using cli.py
|
||||||
|
|
||||||
|
|
||||||
vim: set ft=markdown:
|
vim: set ft=markdown:
|
||||||
|
|
Loading…
Reference in a new issue