The backend component to interface with the smart contract.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 2 месеци
123456789101112131415
  1. class Settings:
  2. PROJECT_NAME = 'Puff Pastry'
  3. VERSION = '0.1.0'
  4. DESCRIPTION = 'A DAO platform on the Stellar network'
  5. ALLOWED_ORIGINS = ('0.0.0.0', '127.0.0.1')
  6. API_V1_STR = '/api/v1'
  7. AUTH_TIMEOUT = 10800
  8. WALLET_ID = 'SANMQAR5UXHAQNLXGYIDZDIPFH3DADD3UCS6EFXN52QBI4AK6YEDWDJ3'
  9. CONTRACT_ID = 'CAZNJSDVIQSGMYBLUINX3CS4WC4N6ZEDZEK64P45XDXHXPL4R7OYM4HB'
  10. DATABASE_URL = 'postgresql+asyncpg://mein:MxS2p37ViXtXikeb@localhost:5432/puffpastry'
  11. settings = Settings()