Skip to content

Commit

Permalink
Post rebase fixes that I missed when solving merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
stefaniuk committed Nov 25, 2023
1 parent f512881 commit 1fa6e52
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# This file is for you! Edit it to implement your own hooks (make targets) into
# the project as automated steps to be executed on locally and in the CD pipeline.

include ./scripts/init.mk
include scripts/init.mk

# ==============================================================================

# Example CI/CD targets are: dependencies, build, publish, deploy, clean, etc.

dependencies: # Install dependencies needed to build and test the project
dependencies: # Install dependencies needed to build and test the project @Pipeline
# TODO: Implement installation of your project dependencies

build: # Build the project artefact @Pipeline
build: # Build the project artefact @Pipeline
make _project name="build"

up: # Run your code
up: # Run your code @Pipeline
make _project name="up"

down: # Stop your code
down: # Stop your code @Pipeline
make _project name="down"

sh: up # Get a shell inside your running project, running it first if necessary
sh: up # Get a shell inside your running project, running it first if necessary @Development
make _project name="sh"

publish: # Publish the project artefact @Pipeline
Expand Down Expand Up @@ -55,5 +55,4 @@ ${VERBOSE}.SILENT: \
deploy \
down \
sh \
tmp/build_timestamp \
up \

0 comments on commit 1fa6e52

Please sign in to comment.