Skip to content

Commit 8204adc

Browse files
committed
Add basic user and subscription config, docs, tests
1 parent 02e6b78 commit 8204adc

Some content is hidden

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

51 files changed

+2766
-0
lines changed

.env-sample

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
POSTGRES_USER=myuser
2+
POSTGRES_PASSWORD=mypassword
3+
POSTGRES_DB=mydatabase
4+
POSTGRES_HOST=127.0.0.1
5+
POSTGRES_PORT=5432
6+
POSTGRES_SSL_MODE=disable
7+
8+
REDIS_HOST=127.0.0.1
9+
REDIS_PORT=6379
10+
11+
ADMIN_USERNAME=admin
12+
ADMIN_EMAIL=
13+
ADMIN_PASSWORD=

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/mvnw text eol=lf
2+
*.cmd text eol=crlf

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
HELP.md
2+
target/
3+
.mvn/wrapper/maven-wrapper.jar
4+
!**/src/main/**/target/
5+
!**/src/test/**/target/
6+
7+
### STS ###
8+
.apt_generated
9+
.classpath
10+
.factorypath
11+
.project
12+
.settings
13+
.springBeans
14+
.sts4-cache
15+
16+
### IntelliJ IDEA ###
17+
.idea
18+
*.iws
19+
*.iml
20+
*.ipr
21+
22+
### NetBeans ###
23+
/nbproject/private/
24+
/nbbuild/
25+
/dist/
26+
/nbdist/
27+
/.nb-gradle/
28+
build/
29+
!**/src/main/**/build/
30+
!**/src/test/**/build/
31+
32+
### VS Code ###
33+
.vscode/
34+
35+
### Sensitive files ###
36+
.env
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
wrapperVersion=3.3.4
2+
distributionType=only-script
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip

compose.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
services:
2+
postgres:
3+
image: 'postgres:latest'
4+
env_file:
5+
- .env
6+
ports:
7+
- '5432:5432'
8+
volumes:
9+
- postgres_data:/var/lib/postgresql/data
10+
11+
redis:
12+
image: 'redis:latest'
13+
env_file:
14+
- .env
15+
ports:
16+
- '6379:6379'
17+
18+
volumes:
19+
postgres_data:

mvnw

Lines changed: 295 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)