Updating readme

Updating gitignore
Add release branch commit
This commit is contained in:
Tara Wilson 2024-12-11 14:21:08 -05:00
parent 9f1d173b50
commit 77ed1879cb
3 changed files with 10 additions and 3 deletions

1
.gitignore vendored
View File

@ -11,6 +11,7 @@
**/tmp/* **/tmp/*
**/out-tsc/* **/out-tsc/*
**/bazel-out/* **/bazel-out/*
**/artifacts/*
# Node # Node
**/node_modules/* **/node_modules/*

View File

@ -8,7 +8,7 @@ An application to handle the ticketing of an event for a small organization.
* [QRCoder](https://github.com/codebude/QRCoder) * [QRCoder](https://github.com/codebude/QRCoder)
* [Angular](https://angular.dev) * [Angular](https://angular.dev)
* [zxing](https://www.npmjs.com/package/@zxing/ngx-scanner) * [zxing](https://www.npmjs.com/package/@zxing/ngx-scanner)
* [SQLite](https://www.sqlite.org/index.html) * [MongoDB](https://www.mongodb.com/docs/manual/)
## Design ## Design

View File

@ -15,6 +15,12 @@ jq '."version" = "'"$VERSION_NUMBER"'"' package.json > package."$VERSION_NUMBER"
mv package."$VERSION_NUMBER".json package.json mv package."$VERSION_NUMBER".json package.json
cd .. cd ..
#COMMIT
echo "Checking in versioned files"
git add .
git commit -m "$VERSION_NUMBER"
git push --set-upstream origin release/"$VERSION_NUMBER"
#BUILD API #BUILD API
echo "Building API:" "$VERSION_NUMBER" echo "Building API:" "$VERSION_NUMBER"
cd ticketAPI || exit cd ticketAPI || exit
@ -31,12 +37,12 @@ cd ..
echo "Creating Docker Container for API" echo "Creating Docker Container for API"
cd ticketAPI || exit cd ticketAPI || exit
docker buildx create --name apibuilder-"$VERSION_NUMBER" --driver docker-container --bootstrap --use 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 .. cd ..
#PACKAGING UI #PACKAGING UI
echo "Creating Docker Container for UI" echo "Creating Docker Container for UI"
cd ticketUI || exit cd ticketUI || exit
docker buildx create --name uibuilder-"$VERSION_NUMBER" --driver docker-container --bootstrap --use 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 .. cd ..