Skip to content

Commit cf5a10f

Browse files
committed
target folder
1 parent 6d2d919 commit cf5a10f

File tree

66 files changed

+309
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+309
-4
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
HELP.md
2-
target/
3-
!.mvn/wrapper/maven-wrapper.jar
4-
!**/src/main/**/target/
5-
!**/src/test/**/target/
62

73
### STS ###
84
.apt_generated

target/backend-1.0.1.jar

51.3 MB
Binary file not shown.

target/backend-1.0.1.jar.original

78.8 KB
Binary file not shown.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
server:
2+
port: 8080
3+
spring:
4+
datasource:
5+
url: jdbc:postgresql://localhost:5432/acm
6+
username: acmsecy
7+
password: acmheads
8+
driver-class-name: org.postgresql.Driver
9+
jpa:
10+
hibernate:
11+
ddl-auto: update
12+
properties:
13+
hibernate:
14+
format_sql: true
15+
show-sql: true
16+
use_sql_comments: true
17+
database-platform: org.hibernate.dialect.PostgreSQLDialect
18+
mail:
19+
host: smtp.gmail.com
20+
port: 587
21+
username: your_email
22+
password: your_app_password
23+
properties:
24+
mail:
25+
smtp:
26+
auth: true
27+
starttls:
28+
enable: true
29+
30+
verify:
31+
base:
32+
frontend: http://localhost:3000/

target/classes/application.yml

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
server:
2+
port: 8080
3+
error:
4+
include-message: always
5+
ssl:
6+
enabled: false
7+
enabled-protocols: TLSv1.2
8+
servlet:
9+
session:
10+
cookie:
11+
secure: true
12+
http-only: true
13+
tomcat:
14+
accesslog:
15+
request-attributes-enabled: true
16+
17+
spring:
18+
datasource:
19+
url: ${POSTGRESQL_DB_URL}
20+
username: ${POSTGRESQL_DB_USER}
21+
password: ${POSTGRESQL_DB_PASSWORD}
22+
hikari:
23+
connectionTimeout: 10000
24+
maximumPoolSize: 5
25+
driverClassName: org.postgresql.Driver
26+
27+
jpa:
28+
hibernate:
29+
ddl-auto: update
30+
properties:
31+
hibernate:
32+
format_sql: true
33+
show-sql: true
34+
use_sql_comments: true
35+
database-platform: org.hibernate.dialect.PostgreSQLDialect
36+
37+
mail:
38+
host: smtp.gmail.com
39+
port: 587
40+
username: ${SMTP_EMAIL}
41+
password: ${SMTP_PASSWORD}
42+
properties:
43+
mail:
44+
smtp:
45+
auth: true
46+
starttls:
47+
enable: true
48+
required: true
49+
jwt:
50+
secret: nyanpasu
51+
verify:
52+
base:
53+
frontend: https://pecacm.com/
54+
55+
logging:
56+
file:
57+
name: /pecacm/logs/backend.log
58+
pattern:
59+
console: "%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n"
60+
level:
61+
org.springframework: INFO
746 Bytes
Binary file not shown.
Binary file not shown.
800 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)