Upsun Support Team
Comments
-
:applause:
-
The short answer is “no”. What you're asking for is not accomplishable in the .platform.app.yaml file. you can potentially have your CDN implement the auth for specific locations of your app. I kno...
-
@maxime, there are a couple of ways you can handle this depending on how you prefer to work. If your theme is in a repository all its own, you can add it as a dependency to your composer.json file....
-
No one likes this answer, but… “it depends”.If you're already using Codeigniter 4 with composer, then as long as you have a composer.json + composer.lock file in your repository, and have chose the...
-
You may want to refer to an adapt it to Platform.sh configuration files if you want to try it there or you can start a trial on Upsun https://support.platform.sh/hc/en-us/community/posts/1991722144...
-
Based on the information above, it appears you're trying to activate a development environment that doesn't have a parent branch (ie production). Specifically, this line:Pushing HEAD to the environ...
-
master (dev environment) was created by default under main (see screenshot below). This was done by running: 1. platform create 2. then: platform push 3. the above was successful and the app is up...
-
If you are using our CLI, you can do> platform sql -e <environment-name> -p <projectid>which will drop you into a myql prompt.If you just need a local dump of the entire database, you can run > pla...
-
the platform sql command also allows you to pass a sql command to the db instance. From there, you could redirect the output to a file. Something like:> platform sql -e <environment-name> -p <proje...
-
in terms of a specific ETL tool, I can't answer since I haven't used those tools. As for python, you could either have python call the platform cli tool directly ( subprocess.Popen ). Or you could ...