Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: 28 handle file upload with graphql #30

Merged
merged 14 commits into from
Aug 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .env.dist
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# PGSQL
DATABASE_URL=postgres://user:password@host/db_name
DATABASE_RUN_MIGRATIONS_ON_IGNITE=true
DB_PASSWORD=db_password
DB_USER=db_user

# LND SERVER CONFIGURATION
LND_ADDRESS="https://umbrel.local:10009"
Expand All @@ -13,4 +16,10 @@ DEFAULT_INVOICE_EXPIRY=3000

# JWT CONFIGURATION
JWT_TOKEN_DURATION=1000
JWT_TOKEN_SECRET=secret
JWT_TOKEN_SECRET=secret

#CORS POLICY
CORS_ORIGIN_POLICY="*"
CORS_METHOD_POLICY="POST, GET, PATCH, OPTIONS"
CORS_HEADERS_POLICY="*"
CORS_CREDENTIALS_POLICY="true"
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ _dump
target
.env
src/lnd/config/
rocket.toml
rocket.toml
.DS_Store
Loading