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

[DO NOT MERGE] Create backend web server implementation with rust framework #37

Open
wants to merge 15 commits into
base: offramp-prototype-staging
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 11 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
10 changes: 10 additions & 0 deletions signer-service-rust/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
SERVER_HOST=127.0.0.1
SERVER_PORT=3001

DATABASE_HOST=localhost
DATABASE_PORT=5432
POSTGRES_USER=superuser
POSTGRES_PASSWORD=1234

STELLAR_SECRET_KEY=SCVJD7BHU5LNFXNIDC7E226HISKUOZUEPJWLA2YU2GNBFMP5PYF2TQBH
STELLAR_PUBLIC_NETWORK=false
13 changes: 13 additions & 0 deletions signer-service-rust/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
SERVER_HOST=127.0.0.1
SERVER_PORT=3001

DATABASE_HOST=localhost
DATABASE_PORT=5432
POSTGRES_USER=superuser
POSTGRES_PASSWORD=1234
DATABASE_URL="postgres://superuser:1234@localhost:5432/postgres"

STELLAR_SECRET_KEY=SCVJD7BHU5LNFXNIDC7E226HISKUOZUEPJWLA2YU2GNBFMP5PYF2TQBH
STELLAR_PUBLIC_NETWORK=false


Loading