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
image: node:10 | |
build: | |
stage: build | |
cache: | |
paths: | |
- node_modules/ | |
script: | |
- npm install --quiet | |
- npm run build-prod |
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
image: node:10 | |
pipelines: | |
branches: | |
master: | |
- step: | |
name: "Build, test and deploy to firebase production" | |
deployment: production | |
caches: | |
- node |
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 is a sample build configuration for CakePHP >=3.5 + Heroku | |
# Official Bitbucket Pipeline documentation: https://confluence.atlassian.com/x/e8YWN | |
# Only use spaces to indent .yml configuration. | |
# ----- | |
image: edbizarro/bitbucket-pipelines-php7 | |
pipelines: | |
branches: | |
master: |
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 is a sample build configuration for CakePHP >=3.5 | |
# Official Bitbucket Pipeline documentation: https://confluence.atlassian.com/x/e8YWN | |
# Only use spaces to indent .yml configuration. | |
# ----- | |
image: edbizarro/bitbucket-pipelines-php7 | |
pipelines: | |
branches: | |
master: |
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
[production] | |
scheme = ftp | |
user = 'username' | |
host = 'demo.com' | |
path = '/' | |
ssl = true | |
; files that should be ignored and not uploaded to the server, but are still tracked in git | |
exclude[] = 'config/schema/*' | |
exclude[] = 'tests/*' |