-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch webapp into quasar vite-cli (#77)
* update git modules * update Makefile * initial changes * more changes * update * update * final
- Loading branch information
1 parent
1a0213b
commit c517a6d
Showing
37 changed files
with
3,992 additions
and
28,550 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 |
---|---|---|
|
@@ -37,6 +37,7 @@ scattnlay-mp | |
|
||
# Python | ||
*.egg-info/* | ||
.tox | ||
|
||
# CLion files | ||
.idea | ||
|
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# git submodule update --init --recursive | ||
[submodule "guiapp/public/refractiveindex.info-database"] | ||
path = guiapp/public/refractiveindex.info-database | ||
url = [email protected]:kostyfisik/refractiveindex.info-database.git |
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
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
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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
/dist | ||
/src-bex/www | ||
/src-capacitor | ||
/src-cordova | ||
/.quasar | ||
/node_modules | ||
.eslintrc.js | ||
babel.config.js | ||
.eslintrc.cjs | ||
/src-ssr | ||
/src/nmiejs.js | ||
|
||
/quasar.config.*.temporary.compiled* |
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
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
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,5 @@ | ||
# pnpm-related options | ||
shamefully-hoist=true | ||
strict-peer-dependencies=false | ||
# to get the latest compatible packages when creating the project https://github.com/pnpm/pnpm/issues/6463 | ||
resolution-mode=highest |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,21 +4,22 @@ | |
quasar build | ||
cp dist/spa/nmiejs.wasm dist/spa/js/nmiejs.wasm | ||
|
||
#cd ~/github/kostyfisik.github.io | ||
#git reset --hard c66101abdd5db0a4ff5ef69c3328cdfdbadaa398 | ||
#cp -r ../scattnlay/guiapp/dist/spa/* ./ | ||
#git add * | ||
#git add */* | ||
#git commit -am 'update' | ||
#git push -f | ||
cd ~/coding/kostyfisik.github.io | ||
git reset --hard c66101abdd5db0a4ff5ef69c3328cdfdbadaa398 | ||
# cp -r ../scattnlay/guiapp/dist/spa/* ./ | ||
git add * | ||
git add */* | ||
git commit -am 'update' | ||
git push -f | ||
|
||
cd dist/spa/css | ||
for file in `ls *.css`; do sed -i 's/[.]block{display:block\!important}//g' $file; done | ||
cd .. | ||
#sed -i 's=[<]base href[=]//themes//custom//physics//mie-next// [>]==g' index.html | ||
cd ../.. | ||
# # physics.itmo.ru | ||
# cd dist/spa/css | ||
# for file in `ls *.css`; do sed -i 's/[.]block{display:block\!important}//g' $file; done | ||
# cd .. | ||
# #sed -i 's=[<]base href[=]//themes//custom//physics//mie-next// [>]==g' index.html | ||
# cd ../.. | ||
|
||
rsync -aue ssh --progress dist/spa/ [email protected]:/var/www/html/physicsifmoru/web/themes/custom/physics/mie | ||
echo | ||
cat dist/spa/index.html | ||
echo | ||
# rsync -aue ssh --progress dist/spa/ [email protected]:/var/www/html/physicsifmoru/web/themes/custom/physics/mie | ||
# echo | ||
# cat dist/spa/index.html | ||
# echo |
Oops, something went wrong.