diff --git a/.gitignore b/.gitignore index 29473f7..56d3edb 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ **/tmp/* **/out-tsc/* **/bazel-out/* +**/artifacts/* # Node **/node_modules/* diff --git a/README.md b/README.md index e256ebb..0748b1d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ An application to handle the ticketing of an event for a small organization. * [QRCoder](https://github.com/codebude/QRCoder) * [Angular](https://angular.dev) * [zxing](https://www.npmjs.com/package/@zxing/ngx-scanner) -* [SQLite](https://www.sqlite.org/index.html) +* [MongoDB](https://www.mongodb.com/docs/manual/) ## Design diff --git a/build-production.sh b/build-production.sh index 1f77e3e..a53985a 100644 --- a/build-production.sh +++ b/build-production.sh @@ -15,6 +15,12 @@ jq '."version" = "'"$VERSION_NUMBER"'"' package.json > package."$VERSION_NUMBER" mv package."$VERSION_NUMBER".json package.json cd .. +#COMMIT +echo "Checking in versioned files" +git add . +git commit -m "$VERSION_NUMBER" +git push --set-upstream origin release/"$VERSION_NUMBER" + #BUILD API echo "Building API:" "$VERSION_NUMBER" cd ticketAPI || exit @@ -31,12 +37,12 @@ cd .. echo "Creating Docker Container for API" cd ticketAPI || exit docker buildx create --name apibuilder-"$VERSION_NUMBER" --driver docker-container --bootstrap --use -docker buildx build --platform linux/amd64,linux/arm64 --push -t terralilly85/follicle-api:"$VERSION_NUMBER" . +docker buildx build --platform linux/amd64,linux/arm64 --push -t terralilly85/ticket-api:"$VERSION_NUMBER" . cd .. #PACKAGING UI echo "Creating Docker Container for UI" cd ticketUI || exit docker buildx create --name uibuilder-"$VERSION_NUMBER" --driver docker-container --bootstrap --use -docker buildx build --platform linux/amd64,linux/arm64 --push -t terralilly85/follicle-ui:"$VERSION_NUMBER" . +docker buildx build --platform linux/amd64,linux/arm64 --push -t terralilly85/ticket-ui:"$VERSION_NUMBER" . cd .. \ No newline at end of file