Skip to content

Instantly share code, notes, and snippets.

@tur0o
tur0o / bitbucket-pipelines.yml
Created January 4, 2021 13:50
File to make mirroring between Bitbucket and Github
clone:
depth: full
pipelines:
default:
- step:
script:
- git push --prune git@github.com:GITHUB_USERNAME/GITHUB_PROJECT.git
+refs/remotes/origin/*:refs/heads/* +refs/tags/*:refs/tags/*
@tur0o
tur0o / Makefile
Last active January 7, 2021 22:07
Makefile to init a dockerized symfony project
.PHONY: help project-init docker-build docker-up install-vendors jwt-init db-init hello
.DEFAULT_GOAL = help
project-init: docker-build docker-up install-vendors jwt-init db-init hello ## Install and init project
docker-build: ## Build docker image
docker-compose build