12factor Questions

4

Solved

I 'm reading the 12-factor-app manifesto and I'm at the dependencies section right now. Dependency Isolation is something I cannot get my head around, though. Unfortunately no actual definition as ...
Nightwear asked 17/9, 2020 at 11:8

4

Solved

Should parallel programming be used in the development of microservices in case the microservices are scalable and, for instance, deployed as ECS on AWS? If yes, what are the benefits of consuming...

6

I am trying to containerize a frontend web application and I am having troubles to figure out how to pass environment variables. The application is a Angular application, so it is 100% client-side....
Marasmus asked 3/2, 2018 at 9:22

4

Solved

The readme of the react redux realworld.io application at https://github.com/gothinkster/react-redux-realworld-example-app says to edit the src/agent.js to change the API_ROOT to point to a differe...
Aleece asked 23/4, 2018 at 7:39

2

My goal: I intend to follow "The Twelve-Factor App" methodology for building my Django app on Heroku. Introduction: I'm following the "Getting Started with Django on Heroku" quick start guide. A...
Avocation asked 12/9, 2013 at 0:3

7

I'm running tomcat in docker, but I can't see the logs. They are written to various log files under tomcat/logs, but I can't see them when tomcat is running in a docker container. Here is my Docke...
Knurled asked 8/12, 2017 at 13:22

3

Solved

I'd like to use dotenv files to configure my Spring Boot application. What is the best way to do this? In Ruby or Node world, I just creating .env file and it loads all stuff from there to applic...
Factfinding asked 24/10, 2019 at 21:29

2

Solved

Reading Config section for 12 factor app : https://12factor.net/config it states "Another approach to config is the use of config files which are not checked into revision control" . Instead "The t...
Fortitude asked 19/9, 2017 at 20:47

3

Solved

I have read about the Twelve Factor App's Config - Section III and searched for a way to do it in NodeJS. It seems that most people recommend dotenv to store configs in environment variables. Howev...
Ial asked 17/4, 2017 at 3:38

3

Solved

I was reading the 12 factor app manifesto http://12factor.net/. The manifesto recommends storing the configuration data for the application in Enviornment variables. Does this mean that properties ...
Ridley asked 15/8, 2014 at 16:57

1

Solved

After reading the config point of the 12 factor app I decided to override my config file containing default value with environment variable. I have 3 Dockerfiles, one for an API, one for a front-e...

1

Solved

I'm trying to figure out the best approach to web application configuration. The goals are: Configurability. Force the configuration to be specified in deploy time. Make sure the configuration is...
Lookout asked 5/5, 2016 at 11:28

1

I have been building my application mostly as a 12-factor application and am now looking at the configuration part. Right now as it stands, I have separate configuration files for development and p...
Reckon asked 10/12, 2018 at 15:35

3

Here is the link 12 factor I am confused weather if I should store values inside my app.properties file vs environment variable. App.properties Memory_Folder_Test = Test Memory_Folder_Prod = Pro...
Kirsch asked 20/6, 2017 at 14:48

3

Solved

I've enjoyed using Rails on Heroku, and like that I can adjust the configuration property of a Heroku app without having to commit a change to xyz.yml and redeploy. It would be nice to completely ...
Conservatoire asked 4/7, 2012 at 21:4

3

A Twelve factor app is expected to store configuration in the environment. Is this intended to include SSL certificate and key files, which can be "large" (multiples of kb at least), and (dependin...
Hurley asked 16/8, 2015 at 17:53

3

Solved

12factor recommends not to daemonize processes. What are the disadvantages of doing so?
Wildfowl asked 3/11, 2014 at 0:41

2

I have recently discovered https://12factor.net/ — a set of requirements for production environment that look quite sensible, except for logging requirements. https://12factor.net/logs says that l...
Elmer asked 26/8, 2017 at 11:42

1

Solved

I'm writing a thesis about twelve-factor apps and I wonder if you can help me out here. The third factor of twelve-factor apps states: Store config in the environment. (https://12factor.net/config...
Ridglea asked 17/12, 2016 at 20:49

2

Our team is presently exploring the idea of service discovery for a Symfony2 application using Consul. Being in the relative frontier, there's very little out there in the way of discussion. So far...

2

Solved

My question relates to the first factor of 12 factor apps manifesto: the codebase. (see http://12factor.net/codebase). TL;DR: this factor states there's a one to one relationship between codebase...
Bunting asked 8/12, 2015 at 13:40

2

Solved

By reading the following post from 12factor I have come up with a question I'd like to check how you guys handle this. Basically, an app should write directly to stdout/stderr. Is there anyway to ...
Messidor asked 25/2, 2015 at 21:57

1

Solved

I am in reference to the Twelve-Factor app "manifesto" which can be found here: http://12factor.net In the eighth factor, the author writes: Twelve-factor app processes should never daemonize o...
Velarde asked 4/2, 2015 at 20:24

2

In the 12 Factor article on Port Binding http://12factor.net/port-binding there is a requirement that every app be self-contained and not have a runtime injected e.g. Tomcat. For what reason is thi...
Urey asked 21/10, 2014 at 16:16

2

Solved

I'm trying to make an angularjs app 12 factor compliant regarding config (http://12factor.net/config). It should depend on the environment and I should not see the words development, test, product...
Kultur asked 30/5, 2014 at 10:14

© 2022 - 2024 — McMap. All rights reserved.