Radiant extensions on Heroku?

Does anyone have any experience getting a Radiant CMS to actually make it into a heroku instance? I tried to remove the submodules and add the files back, but really no luck.

+3
source share
2 answers

Heroku does not currently support the w20> submodules. However, their (excellent) documentation says this: check here

From the docs:

$ cd myapp
$ rm -rf `find . -mindepth 2 -name .git`
$ git add .
$ git commit -m "brought submodules into the main repo"
+5
source
Routines

Git is not currently supported. Evaluated whether to support them in the future; in the meantime, you will need to track any submodules in the main project. You can do it as follows:

$ cd myapp
$ rm -rf `find . -mindepth 2 -name .git`
$ git rm --cache `git submodule | cut -f2 -d' '`
$ git rm .gitmodules
$ git add .
$ git config -l | grep '^submodule' | cut -d'=' -f1 | xargs -n1 git config --unset-all
$ git commit -m "brought submodules into the main repo"

, , :

$ find . -mindepth 2 -name .git

, .

+1

Source: https://habr.com/ru/post/1708845/


All Articles