forked from cerc-io/snowballtools-base
Nabarun Gogoi
ef0eac8293
* Create web3 modal provider with SIWE * Add auth router to handle SIWE authentication * Use axios instance to make request * Add button for SIWE authentication * Add changes to access session in web-app GQL requests * Add auth check in GQL context and load/create user * Use authenticated user from context * Redirect to sign in page if unauthenticated and logout button * Change sign-in route to login * Get project domain from config file * Set user ethAddress column as unique * Use formatted user name * Get session secret and origin url from config file * Add unique constraint for eth address * Get secure and samesite from origin url * Get wallet connect id and backend url from env file * Format user email in member tab panel * Add backend config isProduction to set trust proxy * Use only one server url config * Add tool tip for displaying email * Add trustProxy and domain in server.session config * Add SERVER_GQL_PATH constant in frontend --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
34 lines
696 B
TOML
34 lines
696 B
TOML
[server]
|
|
host = "127.0.0.1"
|
|
port = 8000
|
|
gqlPath = "/graphql"
|
|
[server.session]
|
|
secret = "p4yfpkqnddkui2iw7t6hbhwq74lbqs7bhobvmfhrowoi"
|
|
appOriginUrl = 'http://localhost:3000'
|
|
trustProxy = false
|
|
domain = "localhost"
|
|
|
|
[database]
|
|
dbPath = "db/snowball"
|
|
|
|
[gitHub]
|
|
webhookUrl = ""
|
|
[gitHub.oAuth]
|
|
clientId = ""
|
|
clientSecret = ""
|
|
|
|
[registryConfig]
|
|
fetchDeploymentRecordDelay = 5000
|
|
restEndpoint = "http://localhost:1317"
|
|
gqlEndpoint = "http://localhost:9473/api"
|
|
chainId = "laconic_9000-1"
|
|
privateKey = ""
|
|
bondId = ""
|
|
[registryConfig.fee]
|
|
amount = "200000"
|
|
denom = "aphoton"
|
|
gas = "750000"
|
|
|
|
[misc]
|
|
projectDomain = "apps.snowballtools.com"
|