Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
fbdcdac
Removed hours and configurations to ease the intake process. QAAS inp…
Aug 18, 2017
18637c6
Merge pull request #1130 from wdprice/feature/qaas-and-chatbot
Aug 18, 2017
29f5c2a
Fixing icon loading
Aug 18, 2017
80e8a26
Merge branch 'dev' into feature/qaas-and-chatbot
Aug 18, 2017
c1abf85
Fixed lint error
Aug 18, 2017
d73c76a
Github issue#1022, 'Continue' button activates even if only 'Project …
Aug 29, 2017
e147562
Fixing dependencies to point to connectv2 of tc-ui
Aug 29, 2017
f54a08b
Phase out 'Discussions' tab
ThomasKranitsas Aug 29, 2017
3657412
Merge upstream/dev
ThomasKranitsas Aug 29, 2017
d58171b
Merge pull request #1152 from appirio-tech/feature/qaas-and-chatbot
dmessing Aug 30, 2017
b3df229
removed REACT line to past linter
dmessing Aug 30, 2017
cfb1525
Merge pull request #1153 from appirio-tech/feature/qaas-and-chatbot
dmessing Aug 30, 2017
f978dbd
Merge pull request #1151 from ThomasKranitsas/phase-out-discussions
mtwomey Sep 1, 2017
ddea7a0
Stop gzipping .map files (to fix webpack debugging in Chrome)
mtwomey Sep 1, 2017
7aa434e
Try a fresh shrinkwrap to fix builds
mtwomey Sep 2, 2017
7e37bdb
Deploying qa brach to test01 url in dev environment
Sep 5, 2017
61ad7ae
Allowing overriding accounts app URLs via env variables.
Sep 5, 2017
e8ff980
enable posting new topics in dashboard for all roles
gondzo Sep 5, 2017
8d84c81
Merge pull request #1157 from appirio-tech/updateDashboardPostRoles
gondzo Sep 5, 2017
9b69a54
Update FeedContainer.js
gondzo Sep 5, 2017
a2bff81
Merge pull request #1158 from appirio-tech/updateDashboardPostRoles
gondzo Sep 5, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
machine:
node:
version: 5.5.0
version: 6.11.2
environment:
CXX: g++-4.8

Expand All @@ -23,6 +23,11 @@ deployment:
owner: appirio-tech
commands:
- ./deploy.sh DEV
test:
branch: [qa]
owner: appirio-tech
commands:
- ./deploy.sh TEST01
qa:
branch: qa
owner: appirio-tech
Expand Down
12 changes: 6 additions & 6 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ deploy_s3bucket() {
cat dist/app.2e9868372e0e2992d5d2.css
#aws s3 sync --dryrun ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control private,no-store,no-cache,must-revalidate,max-age=0
#result=`aws s3 sync ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control private,no-store,no-cache,must-revalidate,max-age=0`
aws s3 sync --dryrun ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control max-age=0,s-maxage=86400 --exclude "*.txt" --exclude "*.js" --exclude "*.map" --exclude "*.css"
result=`aws s3 sync ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control max-age=0,s-maxage=86400 --exclude "*.txt" --exclude "*.js" --exclude "*.map" --exclude "*.css"`
aws s3 sync --dryrun ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control max-age=0,s-maxage=86400 --exclude "*.txt" --exclude "*.js" --exclude "*.css"
result=`aws s3 sync ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control max-age=0,s-maxage=86400 --exclude "*.txt" --exclude "*.js" --exclude "*.css"`
if [ $? -eq 0 ]; then
#echo $result
echo "All html, font, image and media files are Deployed without gzip encoding!"
echo "All html, font, image, map and media files are Deployed without gzip encoding!"
else
echo "Deployment Failed - $result"
exit 1
fi
#result=`aws s3 sync ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control private,no-store,no-cache,must-revalidate,max-age=0`
aws s3 sync --dryrun ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control max-age=0,s-maxage=86400 --exclude "*" --include "*.txt" --include "*.js" --include "*.map" --include "*.css" --content-encoding gzip
result=`aws s3 sync ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control max-age=0,s-maxage=86400 --exclude "*" --include "*.txt" --include "*.js" --include "*.map" --include "*.css" --content-encoding gzip`
aws s3 sync --dryrun ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control max-age=0,s-maxage=86400 --exclude "*" --include "*.txt" --include "*.js" --include "*.css" --content-encoding gzip
result=`aws s3 sync ${HOME}/${CIRCLE_PROJECT_REPONAME}/dist s3://${AWS_S3_BUCKET} --cache-control max-age=0,s-maxage=86400 --exclude "*" --include "*.txt" --include "*.js" --include "*.css" --content-encoding gzip`
if [ $? -eq 0 ]; then
#echo $result
echo "All css, js, and map files are Deployed! with gzip"
echo "All txt, css, and js files are Deployed! with gzip"
else
echo "Deployment Failed - $result"
exit 1
Expand Down
4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading