Skip to content

Instantly share code, notes, and snippets.

View kainiklas's full-sized avatar
📚
Continuously Learning

Kai Niklas kainiklas

📚
Continuously Learning
View GitHub Profile
@kainiklas
kainiklas / .gitlab-ci.yml
Last active March 31, 2019 04:31
GitLab CI/CD configuration for Angular 6 + Firebase deployment
image: node:10
build:
stage: build
cache:
paths:
- node_modules/
script:
- npm install --quiet
- npm run build-prod
@kainiklas
kainiklas / bitbucket-pipelines.yml
Last active February 7, 2019 04:01
Bitbucket Pipeline for Angular 6 + Firebase deployment
image: node:10
pipelines:
branches:
master:
- step:
name: "Build, test and deploy to firebase production"
deployment: production
caches:
- node
@kainiklas
kainiklas / bitbucket-pipelines.yml
Created January 29, 2018 21:56
Bitbucket Pipeline for CakePHP + Heroku deployment
# 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:
@kainiklas
kainiklas / bitbucket-pipelines.yml
Created January 24, 2018 22:51
Bitbucket Pipeline example for CakePHP + PHPloy
# 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:
@kainiklas
kainiklas / phploy.ini
Last active January 24, 2018 23:08
Example of a PHPPloy configuration for CakePHP
[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/*'