Skip to content

Commit

Permalink
Merge pull request #15 from rrigato/dev
Browse files Browse the repository at this point in the history
fix ignore file
  • Loading branch information
rrigato authored Jul 14, 2024
2 parents c30fe6c + 0816c71 commit 077b8be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/avenv
avenv/
__pycache__/
/deployment
*.zip
*.zip
.DS_Store
6 changes: 3 additions & 3 deletions scripts/burnday_build_test.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/bash

# set -e
set -e


export PROJECT_NAME="burnday"
export BUCKET_NAME="${PROJECT_NAME}-app-artifacts"
export DEPLOYMENT_PACKAGE="${PROJECT_NAME}_deployment_package.zip"

Expand Down Expand Up @@ -34,7 +34,7 @@ zip $DEPLOYMENT_PACKAGE -r $PROJECT_NAME \
zip -u $DEPLOYMENT_PACKAGE -j handlers/${PROJECT_NAME}_skill.py \
-x *__pycache__* --quiet

zip -u $DEPLOYMENT_PACKAGE -r externals \
zip -u $DEPLOYMENT_PACKAGE -j externals \
-x *__pycache__* --quiet

echo "--------deployment package created--------"
Expand Down

0 comments on commit 077b8be

Please sign in to comment.