refactor: move into a website directory
This commit is contained in:
parent
86529d7148
commit
3c5c0e808a
747 changed files with 133 additions and 2 deletions
.github/workflows
ansible
source/_posts
website
.dockerignore.editorconfig.env.example.gitignore.yarnrcDockerfile
app
assets
composer.jsoncomposer.lockdocker-compose.override.yaml.exampledocker-compose.yamldraftsesbuild.config.jspackage.jsonphpstan.neonphpunit.xml.distpostcss.config.jsrunsource
_includes
about-author.html.twigfigure.html.twigfooter.html.twighorizontal-rule.html.twiglink-button.html.twigmeta.html.twignavbar.html.twigplausible.html.twig
post
speakerdeck.html.twigtalk
test-driven-drupal-subscribe-form.html.twigtweet.html.twigvideo-embed.html.twig_layouts
_pages
404.htmlblog.html.twigcall.mdcompany-information.mdcontact.mdcv.mddrupal-consulting.mddrupal-testing.mdindex.mdlinks.html.twigpair-with-me.mdprojects.html.twigrecommendations.html.twigspeaker-information.mdtalks.html.twigtest-driven-drupal.mdthings-about-php.mdworking-with-me.md
_posts
10-years-working-full-time-drupal-php.md2014.mdaccessible-bristol-site.mdadd-taxonomy-term-multiple-nodes-using-sql.mdadding-custom-theme-templates-drupal-7.mdannouncing-the-drupal-vm-generator.mdautomating-sculpin-jenkins.mdback-future-gits-diff-apply-commands.mdbuilding-gmail-filters-in-php.mdbuilding-oliverdavies-uk-1-initial-setup.mdbuilding-the-new-phpsw-website.mdchange-content-type-multiple-nodes-using-sql.mdchecking-if-user-logged-drupal-right-way.mdcheckout-specific-revision-svn-command-line.mdcleanly-retrieving-user-profile-data-using-entity-metadata-wrapper.mdconditional-email-addresses-webform.mdconfiguring-the-reroute-email-module.mdcontinuous-integration-vs-continuous-integration.mdcreate-better-photo-gallery-drupal-part-1.mdcreate-better-photo-gallery-drupal-part-2.mdcreate-better-photo-gallery-drupal-part-21.mdcreate-better-photo-gallery-drupal-part-3.mdcreate-block-social-media-icons-using-cck-views-and-nodequeue.mdcreate-flickr-photo-gallery-using-feeds-cck-views.mdcreate-multigroups-drupal-7-using-field-collections.mdcreate-omega-subtheme-less-css-preprocessor-using-omega-tools-and-drush.md
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -27,7 +27,11 @@ jobs:
|
|||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- run: cp .env.example .env
|
||||
- run: ./run ci:build-images
|
||||
- run: ./run ci:push-images
|
||||
working-directory: ./website
|
||||
|
||||
- run: ./run ci:build-images
|
||||
working-directory: ./website
|
||||
|
||||
- run: ./run ci:push-images
|
||||
working-directory: ./website
|
||||
# vim: sw=2 ts=2
|
||||
|
|
0
.gitignore → website/.gitignore
vendored
0
.gitignore → website/.gitignore
vendored
0
composer.lock → website/composer.lock
generated
0
composer.lock → website/composer.lock
generated
21
website/drafts
Executable file
21
website/drafts
Executable file
|
@ -0,0 +1,21 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -o pipefail
|
||||
|
||||
readonly DRAFTS_DIR="${HOME}/Code/Personal/oliverdavies.uk/source/_posts"
|
||||
|
||||
if [[ $# -eq 0 ]]; then
|
||||
grep -lr "draft: true" "${DRAFTS_DIR}" | cut -d"/" -f9- | tr ".md" "" | sort
|
||||
exit 0
|
||||
fi
|
||||
|
||||
readonly DRAFTS_FILE="${*}.md"
|
||||
readonly DRAFTS_PATH="${DRAFTS_DIR}/${DRAFTS_FILE// /-}"
|
||||
|
||||
echo $DRAFTS_PATH
|
||||
if [[ -e "${DRAFTS_PATH}" ]]; then
|
||||
eval "${EDITOR}" "${DRAFTS_PATH}"
|
||||
else
|
||||
touch "${DRAFTS_PATH}"
|
||||
fi
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue