Compare commits

...

2 commits

Author SHA1 Message Date
64b37a2d44
hhhh 2026-02-16 00:03:42 +00:00
153528823b
obviously this token doesnt work anymore 2026-02-15 23:42:19 +00:00
3 changed files with 20 additions and 3 deletions

2
.env
View file

@ -1,2 +0,0 @@
DOKI_TOKEN=OTM4NTIyNzgxMDM1OTIxNDQ4.G49Qim.wrCrGvb3YwTQEMMoJ0P3LpSCWcaeL2AAuOOsEI
DOKI_WARNING_CHANNEL=1320191969137393736

3
.gitignore vendored
View file

@ -44,4 +44,5 @@ config*.json
!**/resources/config.schema.json
### why would this not be here already ###
/logs/
/logs/
*.env

18
pom.xml
View file

@ -67,4 +67,22 @@
<version>4.28.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.1</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrfix>lib/</classpathPrfix>
<mainClass>net.hypr.doki.Doki</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>