Skip to content

Commit 90d3573

Browse files
authored
Merge pull request #14 from APSfurizon/pretix_import_changes
Pretix import changes
2 parents 05de123 + f15a3e5 commit 90d3573

File tree

108 files changed

+2415
-2976
lines changed

Some content is hidden

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

108 files changed

+2415
-2976
lines changed

.env.example

+4
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,7 @@ BACKEND_SERVER_PORT=8080
22
BACKEND_DATASOURCE_URL=jdbc:postgresql://localhost:5433/postgres
33
BACKEND_DATASOURCE_USERNAME=postgres
44
BACKEND_DATASOURCE_PASSWORD=postgres
5+
6+
PRETIX_DEFAULT_ORGANIZER=org
7+
PRETIX_DEFAULT_EVENT=event
8+
PRETIX_API_KEY=OwO

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,8 @@ build/
3333
.vscode/
3434

3535
### draw.io ###
36-
.$*.drawio.bkp
36+
.$*.drawio.bkp
37+
38+
### Configurations ###
39+
.env
40+
.env.local

application/pom.xml

+1-27
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@
3030
<groupId>org.springframework.boot</groupId>
3131
<artifactId>spring-boot-starter-jooq</artifactId>
3232
</dependency>
33-
<!-- TODO -> Remove it later -->
34-
<dependency>
35-
<groupId>org.springframework.boot</groupId>
36-
<artifactId>spring-boot-starter-data-jpa</artifactId>
37-
</dependency>
3833
<dependency>
3934
<groupId>org.springframework.boot</groupId>
4035
<artifactId>spring-boot-starter-mail</artifactId>
@@ -78,28 +73,6 @@
7873
<artifactId>caffeine</artifactId>
7974
<version>3.1.8</version>
8075
</dependency>
81-
<dependency>
82-
<groupId>com.github.pengrad</groupId>
83-
<artifactId>java-telegram-bot-api</artifactId>
84-
<version>7.9.1</version>
85-
</dependency>
86-
<!-- Better switch to jackson -->
87-
<dependency>
88-
<groupId>org.json</groupId>
89-
<artifactId>json</artifactId>
90-
<version>20240303</version>
91-
</dependency>
92-
<!-- Better switch to different http client -->
93-
<dependency>
94-
<groupId>org.apache.httpcomponents</groupId>
95-
<artifactId>httpclient</artifactId>
96-
<version>4.5.14</version>
97-
</dependency>
98-
<dependency>
99-
<groupId>org.apache.httpcomponents.client5</groupId>
100-
<artifactId>httpclient5</artifactId>
101-
<version>5.2</version>
102-
</dependency>
10376
<dependency>
10477
<groupId>org.zalando</groupId>
10578
<artifactId>logbook-spring-boot-starter</artifactId>
@@ -137,6 +110,7 @@
137110
<plugin>
138111
<groupId>org.springframework.boot</groupId>
139112
<artifactId>spring-boot-maven-plugin</artifactId>
113+
<version>${spring.boot.version}</version>
140114
</plugin>
141115
</plugins>
142116
</build>

application/src/main/java/net/furizon/backend/db/entities/pretix/Event.java

-53
This file was deleted.

application/src/main/java/net/furizon/backend/db/entities/pretix/Order.java

-242
This file was deleted.

0 commit comments

Comments
 (0)