Last active
November 21, 2018 16:53
Revisions
-
pkarman revised this gist
Nov 21, 2018 . 1 changed file with 0 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -62,7 +62,4 @@ unsafe: safe: mv .git/hooks/pre-commit-linter .git/hooks/pre-commit .PHONY: test run clean lint check logs db update one-test client-test security build ready -
pkarman revised this gist
Nov 21, 2018 . 1 changed file with 9 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -16,12 +16,18 @@ clean: rm -f app/assets/javascripts/*webpack* rm -rf tmp/capybara vacols: docker exec --tty -i VACOLS_DB-development bash build: clean bundle exec rake local:destroy local:build lint: bundle exec rake lint jslint: cd client && yarn run lint security: bundle exec rake security @@ -56,4 +62,7 @@ unsafe: safe: mv .git/hooks/pre-commit-linter .git/hooks/pre-commit fixschema: perl -pi -e 's/docket_grants/docket_motions/g' db/schema.rb .PHONY: test run clean lint check logs db update one-test client-test security build ready -
pkarman revised this gist
Oct 26, 2018 . 1 changed file with 15 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -14,6 +14,7 @@ clean: rm -f log/vacols.log rm -f log/test.log rm -f app/assets/javascripts/*webpack* rm -rf tmp/capybara build: clean bundle exec rake local:destroy local:build @@ -32,15 +33,27 @@ logs: db: bundle exec rails dbconsole migrate: bundle exec rake db:migrate fresh: git fresh install: bundle check || bundle install update: fresh install migrate client-test: cd client && yarn run build:test one-test: bundle exec rspec $$T unsafe: mv .git/hooks/pre-commit .git/hooks/pre-commit-linter safe: mv .git/hooks/pre-commit-linter .git/hooks/pre-commit .PHONY: test run clean lint check logs db update one-test client-test security build ready -
pkarman revised this gist
Oct 11, 2018 . 1 changed file with 5 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -11,9 +11,13 @@ test: clean bundle exec rake clean: rm -f log/vacols.log rm -f log/test.log rm -f app/assets/javascripts/*webpack* build: clean bundle exec rake local:destroy local:build lint: bundle exec rake lint @@ -39,4 +43,4 @@ client-test: one-test: bundle exec rspec $$T .PHONY: test run clean lint check logs db update one-test client-test security build ready -
pkarman revised this gist
Oct 4, 2018 . 1 changed file with 5 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -12,10 +12,13 @@ test: clean clean: rm -f log/test.log rm -f app/assets/javascripts/*webpack* lint: bundle exec rake lint security: bundle exec rake security check: test lint -
pkarman revised this gist
Oct 2, 2018 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -15,8 +15,7 @@ clean: rm app/assets/javascripts/*webpack* || true lint: bundle exec rake lint security check: test lint -
pkarman revised this gist
Oct 1, 2018 . 1 changed file with 12 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,18 +1,22 @@ ready: h=`docker-compose ps | grep healthy`; while [ "$$h" == "" ]; do h=`docker-compose ps | grep healthy`; echo $$h; sleep 1; done up: docker-compose up -d run: up ready foreman start test: clean bundle exec rake clean: rm -f log/test.log rm app/assets/javascripts/*webpack* || true lint: bundle exec rake lint brakeman check: test lint @@ -24,6 +28,13 @@ db: update: git fresh bundle check || bundle install bundle exec rake db:migrate client-test: cd client && yarn run build:test one-test: bundle exec rspec $$T .PHONY: test run clean lint check logs db update -
pkarman revised this gist
Sep 19, 2018 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,6 @@ ready: h=`docker-compose ps | grep healthy`; while [ "$$h" == "" ]; do h=`docker-compose ps | grep healthy`; echo $$h; sleep 1; done run: docker-compose up -d foreman start -
pkarman revised this gist
Sep 17, 2018 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -23,5 +23,4 @@ update: git fresh bundle exec rake db:migrate .PHONY: test run clean lint check logs db update -
pkarman revised this gist
Sep 14, 2018 . 1 changed file with 8 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -16,4 +16,12 @@ check: test lint logs: docker-compose logs -f db: bundle exec rails dbconsole update: git fresh bundle exec rake db:migrate .PHONY: test run clean lint check logs -
pkarman created this gist
Sep 14, 2018 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ run: docker-compose up -d foreman start test: clean bundle exec rake clean: rm -f log/test.log lint: bundle exec rake lint check: test lint logs: docker-compose logs -f .PHONY: test run clean lint check logs