The backend component to interface with the smart contract.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

15 lignes
495 B

  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()