Skip to content

Commit

Permalink
update readme, add circle build
Browse files Browse the repository at this point in the history
  • Loading branch information
americkson committed Feb 27, 2020
1 parent 4b14591 commit b38e080
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# PHP CircleCI 2.0 configuration file

version: 2
defaults: &defaults
docker:
- image: fourkitchens/ubuntu-1604-php72-node10-apache:latest
environment:
DATE_TIMEZONE: America/Chicago
TERM: xterm
working_directory: ~/project

jobs:
build:
<<: *defaults
steps:
- run: composer create-project fourkitchens/sous-drupal-project sous --no-interaction
workflows:
version: 2
build-deploy:
jobs:
- build
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[![Sous](https://circleci.com/gh/fourkitchens/sous-drupal-project.svg?style=svg)](https://app.circleci.com/github/fourkitchens/sous-drupal-project/pipelines)
![Sous featuring Emulsify](https://github.com/fourkitchens/sous-drupal-distro/blob/master/themes/sous_admin/assets/images/Sous.png "Sous featuring Emulsify")

# Sous Project

This will provide you with a starting Drupal project that is managed with Composer. The install will include a small set of contrib modules, a starting custom module for specific for the build, and a custom starting theme generated from Emulsify.
Expand All @@ -12,11 +15,7 @@ composer create-project fourkitchens/sous-drupal-project PROJECT_NAME --no-inter
```

### Install custom theme & project module

Install your theme
- Follow the theme's setup instructions found in `/web/themes/contrib/emulsify-design-system`
- Recommended naming for the theme is `/web/themes/custom/PROJECT_NAME`
### Build project module

Create a new project module
Generate a custom module at `/web/modules/custom/PROJECT_NAME` using drupal console.
Expand Down

0 comments on commit b38e080

Please sign in to comment.