Skip to content

Commit

Permalink
Removing docs from template.
Browse files Browse the repository at this point in the history
  • Loading branch information
grasmash committed Aug 9, 2016
1 parent 997228f commit 77a8549
Show file tree
Hide file tree
Showing 23 changed files with 23 additions and 32 deletions.
10 changes: 5 additions & 5 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,11 @@ Note that all of the steps from this point forward are the same steps that would

Before building your project dependencies and installing Drupal, you must have a fully functional \*AMP stack on your local machine. BLT intentionally does not provide this local development environment--that is outside of the scope of BLT’s intended responsibilities. It does, however, make recommendations for which tools you should use to manage your stack.

Please see [Local Development](template/readme/local-development.md) for more information on setting up your \*AMP stack:
Please see [Local Development](docs/local-development.md) for more information on setting up your \*AMP stack:

* [Acquia Dev Desktop](template/readme/local-development.md#using-acquia-dev-desktop-for-blt-generated-projects)
* [Drupal VM](template/readme/local-development.md#using-drupal-vm-for-blt-generated-projects)
* [Other](https://github.com/acquia/blt/blob/8.x/template/readme/local-development.md#alternative-local-development-environments)
* [Acquia Dev Desktop](docs/local-development.md#using-acquia-dev-desktop-for-blt-generated-projects)
* [Drupal VM](docs/local-development.md#using-drupal-vm-for-blt-generated-projects)
* [Other](https://github.com/acquia/blt/blob/8.x/docs/local-development.md#alternative-local-development-environments)

When you have completed setting up your local \*AMP stack, double check that the following pieces of information are still correct:

Expand All @@ -133,4 +133,4 @@ Note that all common project tasks are executed through `blt`. For a full list o

## Next Steps

Now that your new project works locally, read through the new [README.md](https://github.com/acquia/blt/blob/8.x/template/README.md) file in your project to learn how to perform common project tasks and integrate with third party tools.
Now that your new project works locally, read through the new [README.md](https://github.com/acquia/blt/blob/8.x/template/README.md) file in your project to learn how to perform common project tasks and integrate with third party tools.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ It scope is discretely defined. It is *not* intended to provide:
* [Testing Framework](template/tests).
* Behat: default `local.yml` configuration, example tests, `FeatureContext.php`
* PHPUnit: default tests for ensuring proper functioning of BLT provided components
* [Project tasks](template/readme/project-tasks.md)
* [Project tasks](docs/project-tasks.md)
* Executing tests and validating code
* Building dependencies
* (Re)installation of Drupal
* Production-safe artifact generation and deployment
* [Continuous Integration](template/readme/ci.md)
* [Continuous Integration](docs/ci.md)
* Travis CI
* GitHub

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 1 addition & 9 deletions index.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
[Acquia BLT (Build and Launch Tool)](https://github.com/acquia/blt) generates new Drupal projects using a standardized template derived from Acquia Professional Services' best practices.

Welcome to the BLT documentation site! Please read through the [Quick Start Guide](https://github.com/acquia/blt/INSTALL.md) to get started, and then browse the rest of this project's documentation in the sidebar.

# Documentation structure

BLT Documentation is broken into the following top-level segments:

* Overview - Information about BLT
* Getting started - How to add BLT to your project
* Project documentation - Templated documentation that will be added to your BLTed project.

# Contributing to BLT

Please feel free to edit any of the pages in this documentation via the 'Edit on GitHub' link at the top right. If you would like to help improve BLT, please file issues via the GitHub issue queue. See [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines and instructions.
1 change: 1 addition & 0 deletions phing/tasks/blt.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<!-- @todo Do not overwrite structured or executable files. Instead, update them intelligently. composer.json, project.yml, settings.php, drush.wrapper etc. -->
<exec dir="${repo.root}" command="rsync -a --no-g --no-p --update ${blt.root}/template/ ${repo.root}/ --exclude 'project.yml' --exclude 'composer.json'" logoutput="true" checkreturn="true"/>
<exec dir="${repo.root}" command="rsync -a --no-g --no-p --update ${blt.root}/template/project.yml ${repo.root}/ --ignore-existing" logoutput="true" checkreturn="true"/>
<exec dir="${repo.root}" command="rsync -a --no-g --no-p --update ${blt.root}/template/README.md ${repo.root}/ --ignore-existing" logoutput="true" checkreturn="true"/>
</target>

<target name="update" depends="init, blt:update-yml, configure">
Expand Down
14 changes: 14 additions & 0 deletions scripts/blt/convert-to-composer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,20 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then
echo "Removing deprecated BLT files from project."
rm -rf build blt.sh tests/phpunit/blt

# Removing old docs.
rm acsf-setup.md
rm architecture.md
rm best-practices.md
rm deploy.md
rm dev-workflow.md
rm features-workflow.md
rm local-development.md
rm onboarding.md
rm project-tasks.md
rm release-process.md
rm repo-architecture.md
rm views.md

# Install (new) alias
echo "Installing blt alias"
yes | ./vendor/acquia/blt/blt.sh install-alias
Expand Down
16 changes: 0 additions & 16 deletions template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,6 @@

Replace this with a brief description of the ${project.human_name} project.

Documentation by role:

* Developer
* [Onboarding](readme/onboarding.md): “how do I get up and running on project work?”
* [Repository architecture](readme/repo-architecture.md): “how is the code organized, and why?”
* [Running project tasks](readme/project-tasks.md): “how do I _____ on my local machine?”
* [Best practices](readme/best-practices.md): "how should I write code?"
* [Workflow](readme/dev-workflow.md): “how do I contribute my code to this project?”
* [Automated testing](tests/README.md): “how do I write / run them, and why should I care?”
* Technical Architect
* [Project Architecture document](readme/architecture.md)
* [Deploying to cloud](readme/deploy.md)
* [Release process](readme/release-process.md)
* [Setting up continuous integration](readme/ci.md)
* [Open source contribution](readme/os-contribution.md)

## Resources

* JIRA - link me!
Expand Down

0 comments on commit 77a8549

Please sign in to comment.