forked from lando/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deployment): Package publishing
- Loading branch information
1 parent
e70297b
commit 20f4333
Showing
6 changed files
with
64 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
name: Create Dev Releases | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- 'preview-**' | ||
workflow_call: | ||
|
||
jobs: | ||
package: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,5 @@ | ||
# Lando Core | ||
# Flos Lando Core | ||
|
||
These are the core libraries that power Lando. They are implemented in [`@lando/cli`] and things like [Pantheon LocalDev](https://pantheon.io/product/localdev) and [WordPress VIP CLI](https://github.com/Automattic/vip-cli/blob/develop/package.json). | ||
These are the core libraries that power flos version of Lando with seamless compose integration. | ||
|
||
On a high level they serve as: | ||
|
||
**An abstraction layer** Lando vastly reduces the complexity of spinning up containers by exposing only the most relevant config for a given "service" and setting "sane defaults". Lando also provides "recipes" which are common combinations of services and their tooling that satisfy a given development use case - e.g. Drupal, Python, Laravel, Dotnet, etc. | ||
|
||
**A superset** Lando provides ways for developers to run complex commands, build steps and automation on their services without the hassle of custom Dockerfiles or long "docker exec" commands. Think `lando yarn add express`. Think clear my applications cache after I import a database. Think install this core-extension before my appserver starts and then `composer install` after it does. | ||
|
||
**A utility** Lando handles some of the more arduous configuration required for a good Docker Compose setup - e.g. proxying, nice urls, cross-application networking (think Vue.js frontend talking to a separate Laravel backend), host-container file permission handling, file sharing, per-container SSL certificate handling, ssh-key handling, etc. | ||
|
||
## Basic Usage | ||
|
||
```js | ||
const Lando = require('@lando/core'); | ||
const lando = new Lando(config); | ||
|
||
// bootstrap and go | ||
return lando.bootstrap(bsLevel).then(lando => { | ||
lando.getApp().init().then(() => cli.run(getTasks(config, cli.argv()), config)); | ||
}); | ||
const | ||
``` | ||
|
||
For more info you should check out the [docs](https://docs.lando.dev/core/v3): | ||
|
||
## Issues, Questions and Support | ||
|
||
If you have a question or would like some community support we recommend you [join us on Slack](https://launchpass.com/devwithlando). | ||
|
||
If you'd like to report a bug or submit a feature request then please [use the issue queue](https://github.com/lando/core/issues/new/choose) in this repo. | ||
|
||
## Changelog | ||
|
||
We try to log all changes big and small in both [THE CHANGELOG](https://github.com/lando/core/blob/main/CHANGELOG.md) and the [release notes](https://github.com/lando/core/releases). | ||
|
||
## Contributors | ||
|
||
<a href="https://github.com/lando/core/graphs/contributors"> | ||
<img src="https://contrib.rocks/image?repo=lando/cli" /> | ||
</a> | ||
|
||
Made with [contributors-img](https://contrib.rocks).` | ||
|
||
## Other Selected Resources | ||
|
||
* [LICENSE](https://github.com/lando/core/blob/main/LICENSE.md) | ||
* [The best professional advice ever](https://www.youtube.com/watch?v=tkBVDh7my9Q) | ||
Thanks to the upstream [lando-core](https://github.com/lando/core)! |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters