Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Commit f143e7d

Browse files
committed
✨ Moved to monorepo with example crate
1 parent b165037 commit f143e7d

File tree

11 files changed

+2856
-6
lines changed

11 files changed

+2856
-6
lines changed

.env.example

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Auth credentials
2+
DATABASE_URL="postgresql://<user>:<pass>@localhost:5432/accounts"
3+
JWT_SECRET="<jwt secret here>"
4+
RUST_LOG=INFO
5+
DATABASE_KEY="<database encryption key here>"
6+
7+
DEV_FRONTEND_URL="http://localhost:3000"
8+
PROD_FRONTEND_URL="https://auth.xiler.net"
9+
DEV_MAIN_URL="http://localhost:8001"
10+
PROD_MAIN_URL="https://xiler.net"
11+
12+
# Domains credentials

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.env
2+
target

.gitmodules

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
[submodule "auth-backend"]
2-
path = auth-backend
1+
[submodule "bin/auth"]
2+
path = bin/auth
33
url = [email protected]:XilerNet/auth-backend.git
4-
[submodule "domains-backend"]
5-
path = domains-backend
4+
[submodule "bin/domains"]
5+
path = bin/domains
66
url = [email protected]:XilerNet/domains-backend.git

0 commit comments

Comments
 (0)