Assemble Git repos into a deployable tree of code.
Project description
Provides a way to assemble various Git repositories into one. It’s like submodules that don’t suck.
Use case: stitch together Wordpress with some themes and plugins before deploying.
Usage
First, you need to create your Castor repository. The following command will create an new Git repository containing an empty Castorfile and a pre-initialized .gitignore.
castor init my-proj
Then, you need to edit your Castorfile. It might look like
Note
post_freeze array is optional. It must be an array, each command will be executed on the target directory after executing castor freeze.
{
"lodge": [
{
"target": "/",
"version": "1.6.1.0",
"repo": "https://github.com/PrestaShop/PrestaShop.git",
"type": "git"
},
{
"target": "/themes/my-prestashop-theme",
"version": "e0e7c15789e6ff674cd75cb24981155441c3df09",
"repo": "git@bitbucket.org:activkonnect/my-prestashop-theme.git",
"type": "git",
"post_freeze": [
"composer update --no-dev"
]
},
{
"target": "/.htaccess",
"type": "file",
"source": "files/htaccess"
}
]
}
Your Castorfile being filled up, you can now apply it
castor apply
This will automatically create your repositories hierarchy, checkout submodules, etc. The root of this hierarchy will be the lodge directory.
If you want to execute post freeze commands on apply add the --exec-post-freeze argument like so :
castor apply --exec-post-freeze
Now you can freeze your project into a git-free, commitable and deployable tree of source code. This will go into the dam directory.
If you want to execute post freeze commands on apply add the --exec-post-freeze argument like so :
castor apply --exec-post-freeze
castor freeze
You can use the lodge as your working directory during development. If you make updates to the code, you can commit in the git repos. If you simply want to update upstream code, check out the new tag/commit you want to use. Then you can use castor freeze again, and it will update the Castorfile automatically with the latest Git HEADs, as well as the dam directory.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file castor-0.2.3.tar.gz
.
File metadata
- Download URL: castor-0.2.3.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e337147f9406581008a186f3e692c72adcf50d223189798e81d146de7ba0a1d6 |
|
MD5 | ea44d46d50cbbddb046a4c86b43b9300 |
|
BLAKE2b-256 | 7b9bc8f9bcaef016286c55c9eec5705c3fc91a602a85fc7325c5ba3951af577d |