Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
95a4fa18da | ||
|
|
51756a0a5c |
10
.idea/.gitignore
generated
vendored
Normal file
10
.idea/.gitignore
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
|
# GitHub Copilot persisted chat sessions
|
||||||
|
/copilot/chatSessions
|
||||||
8
.idea/modules.xml
generated
Normal file
8
.idea/modules.xml
generated
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/prayercircle.iml" filepath="$PROJECT_DIR$/.idea/prayercircle.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
19
.idea/php.xml
generated
Normal file
19
.idea/php.xml
generated
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="MessDetectorOptionsConfiguration">
|
||||||
|
<option name="transferred" value="true" />
|
||||||
|
</component>
|
||||||
|
<component name="PHPCSFixerOptionsConfiguration">
|
||||||
|
<option name="transferred" value="true" />
|
||||||
|
</component>
|
||||||
|
<component name="PHPCodeSnifferOptionsConfiguration">
|
||||||
|
<option name="highlightLevel" value="WARNING" />
|
||||||
|
<option name="transferred" value="true" />
|
||||||
|
</component>
|
||||||
|
<component name="PhpStanOptionsConfiguration">
|
||||||
|
<option name="transferred" value="true" />
|
||||||
|
</component>
|
||||||
|
<component name="PsalmOptionsConfiguration">
|
||||||
|
<option name="transferred" value="true" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
10
.idea/prayercircle.iml
generated
Normal file
10
.idea/prayercircle.iml
generated
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="WEB_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/.idea/copilot/chatSessions" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
22
bin/release.sh
Executable file
22
bin/release.sh
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
TAG=$1
|
||||||
|
PROJECT_NAME=prayercircle
|
||||||
|
REPO_NAME=git.silas.link:Ainias/prayercircle
|
||||||
|
|
||||||
|
# exit when error occurs
|
||||||
|
set -e
|
||||||
|
# Kills any process when the script ends
|
||||||
|
trap "trap - SIGTERM && kill -- -$$" SIGINT SIGTERM EXIT
|
||||||
|
|
||||||
|
if [ -z "$TAG" ]; then
|
||||||
|
echo "no tag given, ABORT!"
|
||||||
|
exit 1
|
||||||
|
fi;
|
||||||
|
|
||||||
|
# Create tag and update
|
||||||
|
git add .
|
||||||
|
git commit -m "bump version to $TAG through release.sh script"
|
||||||
|
git tag -a "$TAG" -m "Tag for version $TAG"
|
||||||
|
git push --follow-tags
|
||||||
|
|
||||||
|
|
||||||
|
ssh dicetable.net "/root/bin/install.sh \"$PROJECT_NAME\" \"$TAG\" prayercircle 1"
|
||||||
@ -8,7 +8,8 @@
|
|||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"build": "cordova prepare browser",
|
"build": "cordova prepare browser",
|
||||||
"start": "cordova run -- --livereload",
|
"start": "cordova run -- --livereload",
|
||||||
"eslint": "eslint 'src/**/*.tsx'"
|
"eslint": "eslint 'src/**/*.tsx'",
|
||||||
|
"export": "echo export script should be added for future versions"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ecosystem:cordova"
|
"ecosystem:cordova"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user