Customer
Comments
-
What UUID are you referring to, can you give an example?
-
Since you want different values based on the environment, you would use environment variables. See https://docs.platform.sh/development/variables.html#environment-variables Note: This is all server...
-
Our builds are environment-agnostic. But you can introduce different behaviour in your application with runtime variables, e.g. check the PLATFORM_BRANCH or create your own variable (e.g. to declar...
-
I checked the docs. some doubts i have - So, suppose multiple variables I need to use. should I define it in plaform.app.yml or settings.plaformsh.php? and this is the way I need to define right - ...
-
Anyone, please help me to install CLI? i’m not sure what’s the problem.
-
this is a perfect example. thanks, @royall. Some doubts, what’s the meaning of this line - ln -sfv ~/keys/prod.json? what is sfv? Just one question, is it only working for the JSON file, or .js fil...
-
Thanks, @royall. Understand now. Just one small doubt, correct me if I’m wrong. the first one is the symlink u create temporarily in home dir and 2nd one is the actual file path. So, for symlink, '...
-
what’s the meaning of this line - ln -sfv ~/keys/prod.json ? what is sfv? This means “create a symbolic link from keys/prod.json in my home directory”. The ~ placeholder stands for the $HOME dire...
-
This line: ln -sfv ~/keys/prod.json web/keys/key.json is a single command that creates a link at ~/web/keys/key.json pointing to the file ~/keys/prod.json. Specifying the link’s target file with ~...
-
Thanks for this guide. The problem that will very likely occur is for static sites that require outside API at bulld time (Static Site Generators). This is a current annoying limitation that would ...