forked from acquia/blt
-
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.
Updating docs, adding video links and next steps. (acquia#614)
- Loading branch information
Showing
5 changed files
with
72 additions
and
62 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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Next steps | ||
|
||
Now that your new project works locally, review [BLT documentation by role](https://http://blt.readthedocs.io/) to learn how to perform common project tasks and integrate with third party tools. | ||
|
||
Here are tasks that are typically performed at this stage: | ||
|
||
* Initialize CI integration. See [Continuous Integration](ci.md). | ||
|
||
blt ci:pipelines:init | ||
# OR | ||
blt ci:travis:init | ||
|
||
* Push to your upstream repo. | ||
|
||
git add -A | ||
git commit -m 'My new project is great.' | ||
git remote add origin [something] | ||
git push origin | ||
|
||
* Create and deploy an artifact. See [Deployment workflow](deploy.md). | ||
|
||
# Ensure git.remotes is set in project.yml | ||
blt deploy | ||
|
||
Other commonly used commands: | ||
|
||
# list targets | ||
blt | ||
|
||
# validate code via phpcs, php lint, composer validate, etc. | ||
blt validate | ||
|
||
# run phpunit tests | ||
blt tests:phpunit | ||
|
||
# ssh into vm & run behat tests | ||
drush @[project.machine_name].local ssh | ||
blt tests:behat | ||
|
||
# diagnose issues | ||
blt doctor | ||
|
||
# download & require a new project | ||
composer require drupal/ctools:^8.3.0 | ||
|
||
# build a deployment artifact | ||
blt deploy:build | ||
|
||
# build artifact and deploy to git.remotes | ||
blt deploy | ||
|
||
# update BLT | ||
composer update acquia/blt --with-dependencies |
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