Skip to content

deploy to heroku #340

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
Jul 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4f1619d
work
thomaswoehlke Jul 30, 2022
06fb492
work
thomaswoehlke Jul 30, 2022
bbf6e3f
work
thomaswoehlke Jul 30, 2022
21775b7
refactoring of java classes
thomaswoehlke Jul 30, 2022
be2f3cb
refactoring of java classes
thomaswoehlke Jul 30, 2022
e1e428c
refactoring of java classes
thomaswoehlke Jul 30, 2022
91739ff
refactoring of java classes
thomaswoehlke Jul 30, 2022
e761232
refactoring of java classes
thomaswoehlke Jul 30, 2022
df71ad7
refactoring of java classes
thomaswoehlke Jul 30, 2022
b902243
refactoring of java classes
thomaswoehlke Jul 30, 2022
f9cfab5
[maven-release-plugin] prepare release v2.3.46
thomaswoehlke Jul 30, 2022
0a0285b
[maven-release-plugin] prepare for next development iteration
thomaswoehlke Jul 30, 2022
38fb5b3
refactoring of java classes
thomaswoehlke Jul 30, 2022
2be28b9
[maven-release-plugin] rollback the release of v2.3.46
thomaswoehlke Jul 30, 2022
89fe871
refactoring of java classes
thomaswoehlke Jul 30, 2022
ea3015a
[maven-release-plugin] prepare release v2.3.46
thomaswoehlke Jul 30, 2022
f5ed587
[maven-release-plugin] prepare for next development iteration
thomaswoehlke Jul 30, 2022
e581c1d
removed liquibase
thomaswoehlke Jul 30, 2022
8828c55
removed liquibase
thomaswoehlke Jul 30, 2022
f2a12dd
removed liquibase
thomaswoehlke Jul 30, 2022
d9e554d
removed liquibase
thomaswoehlke Jul 30, 2022
3e6bf9b
removed liquibase
thomaswoehlke Jul 30, 2022
d246a54
removed liquibase
thomaswoehlke Jul 30, 2022
c94af9c
removed liquibase
thomaswoehlke Jul 30, 2022
8517976
removed liquibase
thomaswoehlke Jul 30, 2022
1089994
[maven-release-plugin] prepare release v2.3.47
thomaswoehlke Jul 30, 2022
b54765e
[maven-release-plugin] prepare for next development iteration
thomaswoehlke Jul 30, 2022
656e646
removed liquibase
thomaswoehlke Jul 30, 2022
864e209
[maven-release-plugin] prepare release v2.3.48
thomaswoehlke Jul 30, 2022
60e7685
[maven-release-plugin] prepare for next development iteration
thomaswoehlke Jul 30, 2022
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
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
Expand All @@ -27,4 +27,4 @@ end_of_line = lf
indent_size = 3
indent_style = space
insert_final_newline = false
trim_trailing_whitespace = true
trim_trailing_whitespace = true
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ setenv.cmd
/src/main/java/org/woehlke/simpleworklist/project/x.txt
/src/main/java/org/woehlke/simpleworklist/task/x.txt
/src/main/java/org/woehlke/simpleworklist/context/x.txt
/src/main/java/org/woehlke/simpleworklist/application/error/x.txt
/src/main/java/org/woehlke/java/simpleworklist/application/error/x.txt
/src/main/java/org/woehlke/simpleworklist/searchRequest/x.txt

/simpleworklist.diff
Expand Down
55 changes: 55 additions & 0 deletions .idea/jarRepositories.xml

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

39 changes: 4 additions & 35 deletions etc/db/setup-postgresql-account-and-db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ CREATE TABLESPACE tablespace_simpleworklist
OWNER tw
LOCATION '/opt/postgresql/tablespace_simpleworklist';

CREATE TABLESPACE tablespace_simpleworklist
OWNER tw
LOCATION 'C:\tablespace_pg\simpleworklist';

ALTER TABLESPACE tablespace_simpleworklist
OWNER TO simpleworklist;

Expand All @@ -34,38 +38,3 @@ CREATE DATABASE simpleworklistref
ENCODING = 'UTF8'
TABLESPACE = tablespace_simpleworklist
CONNECTION LIMIT = -1;






CREATE ROLE petclinic_jakartaee LOGIN
PASSWORD 'petclinic_jakartaeepwd'
SUPERUSER INHERIT CREATEDB CREATEROLE REPLICATION;
GRANT pg_monitor TO petclinic_jakartaee;
GRANT pg_read_all_settings TO petclinic_jakartaee;
GRANT pg_read_all_stats TO petclinic_jakartaee;
GRANT pg_signal_backend TO petclinic_jakartaee;
GRANT pg_stat_scan_tables TO petclinic_jakartaee;


-- Database: petclinic_jakartaee

-- DROP DATABASE petclinic_jakartaee;
-- CONNECTION LIMIT = -1;

CREATE TABLESPACE tablespace_petclinic_jakartae
OWNER tw
LOCATION '/opt/postgresql/tablespace_petclinic_jakartae';

ALTER TABLESPACE tablespace_petclinic_jakartae
OWNER TO simpleworklist;

CREATE DATABASE petclinic_jakartaee
WITH OWNER = petclinic_jakartaee
ENCODING = 'UTF8'
TABLESPACE = tablespace_petclinic_jakartae
CONNECTION LIMIT = -1;


Loading