-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
374 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/bash | ||
VERSION=`cat dev-version` | ||
|
||
echo "preparing pwa-admin version $VERSION" | ||
rm -rf pwa-admin/tmp | ||
mkdir pwa-admin/tmp | ||
cp -r ../../api pwa-admin/tmp | ||
rm -f pwa-admin/tmp/api/config.js | ||
rm -f pwa-admin/tmp/api/auth.pub | ||
rm -f pwa-admin/tmp/api/auth.key | ||
rm -f pwa-admin/tmp/api/user.jwt | ||
|
||
cp -r ../../ui pwa-admin/tmp | ||
cp -r ../../package.json pwa-admin/tmp | ||
rm -rf pwa-admin/tmp/api/config | ||
rm -rf pwa/admin/tmp/ui/node_modules/bootstrap/dist/css | ||
rm -f pwa-admin/tmp/api/auth.pub | ||
rm -f pwa-admin/tmp/api/auth.key | ||
rm -f pwa-admin/tmp/api/user.jwt | ||
|
||
docker build pwa-admin -t perfsonar/pwa-admin:$VERSION --no-cache --force-rm | ||
if [ ! $? -eq 0 ]; then | ||
echo "failed to build" | ||
exit | ||
fi | ||
|
||
#docker tag perfsonar/pwa-admin perfsonar/pwa-admin:$VERSION | ||
docker push perfsonar/pwa-admin:$VERSION | ||
|
||
#docker tag perfsonar/pwa-admin perfsonar/pwa-admin:latest | ||
#docker push perfsonar/pwa-admin:latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/bash | ||
echo "Building pwa-admin DEV tag ..." | ||
./dev-build-admin.sh && echo "Building pwa-pub ..." && \ | ||
./dev-build-pub.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/bash | ||
VERSION=`cat dev-version` | ||
|
||
echo "preparing pwa-pub version $VERSION" | ||
rm -rf pwa-pub/tmp | ||
mkdir pwa-pub/tmp | ||
cp -r ../../api pwa-pub/tmp | ||
rm -f pwa-pub/tmp/api/config.js | ||
cp -r ../../package.json pwa-pub/tmp | ||
rm -rf pwa-pub/tmp/api/config | ||
|
||
docker build pwa-pub -t perfsonar/pwa-pub:$VERSION --no-cache --force-rm | ||
|
||
if [ ! $? -eq 0 ]; then | ||
echo "failed to build" | ||
exit | ||
fi | ||
|
||
#docker tag perfsonar/pwa-pub perfsonar/pwa-pub:$VERSION | ||
docker push perfsonar/pwa-pub:$VERSION | ||
|
||
#docker tag perfsonar/pwa-pub perfsonar/pwa-pub:latest | ||
#docker push perfsonar/pwa-pub:latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
dev |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
define({ | ||
cs: { | ||
'Allowed values:' : 'Povolené hodnoty:', | ||
'Compare all with predecessor': 'Porovnat vše s předchozími verzemi', | ||
'compare changes to:' : 'porovnat změny s:', | ||
'compared to' : 'porovnat s', | ||
'Default value:' : 'Výchozí hodnota:', | ||
'Description' : 'Popis', | ||
'Field' : 'Pole', | ||
'General' : 'Obecné', | ||
'Generated with' : 'Vygenerováno pomocí', | ||
'Name' : 'Název', | ||
'No response values.' : 'Nebyly vráceny žádné hodnoty.', | ||
'optional' : 'volitelné', | ||
'Parameter' : 'Parametr', | ||
'Permission:' : 'Oprávnění:', | ||
'Response' : 'Odpověď', | ||
'Send' : 'Odeslat', | ||
'Send a Sample Request' : 'Odeslat ukázkový požadavek', | ||
'show up to version:' : 'zobrazit po verzi:', | ||
'Size range:' : 'Rozsah velikosti:', | ||
'Type' : 'Typ', | ||
'url' : 'url' | ||
} | ||
}); |