Skip to content

Commit

Permalink
Add AWS CodeBuild configuration file (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
addianto committed Jun 23, 2019
1 parent 6aa4041 commit 187637a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions buildspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
version: 0.2

env:
variables:
DEBUG: "FALSE"

phases:
install:
runtime-versions:
python: 3.7
pre-build:
commands:
- pip install -r requirements.txt
build:
commands:
- python app-test.py
post-build:
commands:
- git archive --format=zip -9 -o flaskr-ci-cd-source.zip HEAD

0 comments on commit 187637a

Please sign in to comment.