Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jecisc/deploymentutility
I am a project providing a facade to help deploy pharo projects
https://github.com/jecisc/deploymentutility
deployment pharo smalltalk
Last synced: 4 days ago
JSON representation
I am a project providing a facade to help deploy pharo projects
- Host: GitHub
- URL: https://github.com/jecisc/deploymentutility
- Owner: jecisc
- License: mit
- Created: 2020-03-17T13:51:55.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-01T09:29:48.000Z (over 2 years ago)
- Last Synced: 2024-11-17T07:34:32.370Z (about 1 month ago)
- Topics: deployment, pharo, smalltalk
- Language: Smalltalk
- Homepage: https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/DeployYourPharoApplication.md
- Size: 13.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Deployment Utility
I am a project providing a facade to help deploy pharo projects
- [Installation](#installation)
- [Documentation](#documentation)
- [Version management](#version-management)
- [Smalltalk versions compatibility](#smalltalk-versions-compatibility)
- [Contact](#contact)## Installation
To install the project in your Pharo image execute:
```Smalltalk
Metacello new
githubUser: 'jecisc' project: 'DeploymentUtility' commitish: 'v1.x.x' path: 'src';
baseline: 'DeploymentUtility';
load
```To add it to your baseline:
```Smalltalk
spec
baseline: 'DeploymentUtility'
with: [ spec repository: 'github://jecisc/DeploymentUtility:v1.x.x/src' ]
```Note that you can replace the #v1.x.x by another branch such as #development or a tag such as #v1.0.0, #v1.? or #v1.1.?.
## Documentation
This project aim to implement all the deployment utilities explained in the [Pharo Wiki](https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/DeployYourPharoApplication.md).
Check the class side of DUFacade for more information.
## Version management
This project use semantic versioning to define the releases. This means that each stable release of the project will be assigned a version number of the form `vX.Y.Z`.
- **X** defines the major version number
- **Y** defines the minor version number
- **Z** defines the patch version numberWhen a release contains only bug fixes, the patch number increases. When the release contains new features that are backward compatible, the minor version increases. When the release contains breaking changes, the major version increases.
Thus, it should be safe to depend on a fixed major version and moving minor version of this project.
## Smalltalk versions compatibility
| Version | Compatible Pharo versions |
|------------- |--------------------------- |
| 1.x.x | Pharo 70, 80, 90, 10 |## Contact
If you have any questions or problems do not hesitate to open an issue or contact cyril (a) ferlicot.me