Updating readme
Updating gitignore Add release branch commit
This commit is contained in:
parent
9f1d173b50
commit
77ed1879cb
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -11,6 +11,7 @@
|
|||
**/tmp/*
|
||||
**/out-tsc/*
|
||||
**/bazel-out/*
|
||||
**/artifacts/*
|
||||
|
||||
# Node
|
||||
**/node_modules/*
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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 ..
|
||||
Loading…
Reference in New Issue
Block a user