Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

September 2019 updates #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions docs/guides/statamic/by-parallax/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,16 @@ Open up the `.env` file and update any details relating to your local environmen
php please migrate
```

Statamic themes are stored in `public/themes`. You may notice that there is a base theme in there already, called `default`. Rename this folder to the name of your site, for example `my-site`.
There are a number of things that need changing to your site name across the project, so do a find & replace in the entire project, find `change-me` and replace with the name of your site, for example `my-site`.

Statamic themes are stored in `public/themes`. Navigate to that directory.

You'll notice there is a directory called `change-me` there. You should change that to your site name, e.g. `my-site`, as well as the following files:

`/site/addons/ChangeMe` -> `/site/addons/MySite` (change MySite to your sitename, in camel-case)
`/site/addons/ChangeMe/ChangeMeController.php` -> `/site/addons/ChangeMe/MySiteController.php`
`/site/addons/ChangeMe/ChangeMeListener.php` -> `/site/addons/ChangeMe/MySiteListener.php`
`/site/addons/ChangeMe/ChangeMeServiceProvider.php` -> `/site/addons/ChangeMe/MySiteServiceProvider.php`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about we just call these files App*. e.g. addons/App/AppController.php


```
cd public/themes/my-site
Expand Down Expand Up @@ -284,7 +293,7 @@ Assets are stored on Amazon S3. When a project builds on Bamboo for the first ti

### Using the bucket locally

* Log in to the [Kubernetes Dashboard](https://dashboard.prlx.io/)
* Log in to the [Kubernetes Dashboard](https://dashboard.prlx.io/) or [Kbuild Dashboard](https://dashboard.parallax.dev/)
* Search for your project under `Namespace` on the left-hand side
* Select a pod
* Look for the S3 details under the `Container` section:
Expand Down