.env 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. # Address of the Joystream node.
  2. NODE_URL=ws://127.0.0.1:9944
  3. # Address of the Joystream query node.
  4. QUERY_NODE_URL=http://127.0.0.1:8081/graphql
  5. # Account which is expected to provide sufficient funds to test accounts.
  6. TREASURY_ACCOUNT_URI=//Alice
  7. # Sudo Account
  8. SUDO_ACCOUNT_URI=//Alice
  9. # to be able to use all accounts generated in a prior scenario run against the same chain
  10. START_KEY_ID=0
  11. # Mini-secret or mnemonic used in SURI for deterministic key derivation
  12. SURI_MINI_SECRET=""
  13. ## TODO: Do the below settings really make sense as env variables?
  14. ## Probably a configure them in flows or fixutres or maybe a general test-config.yml file
  15. # Amount of members able to buy membership in membership creation test.
  16. MEMBERSHIP_CREATION_N=2
  17. # Amount of members able to invite in members invite test.
  18. MEMBERS_INVITE_N=2
  19. # Amount of staking accounts to add during "add staking accounts" test
  20. STAKING_ACCOUNTS_ADD_N=3
  21. # Amount of applications to create in openingAndApplicationsStatus test
  22. APPLICATION_STATUS_CREATE_N=6
  23. # Amount of applications to withdraw in openingAndApplicationsStatus test
  24. APPLICATION_STATUS_WITHDRAW_N=3
  25. # Amount of workers to test in workerActions flow
  26. WORKER_ACTIONS_WORKERS_N=6
  27. # Amount of workers to terminate in workerActions flow
  28. WORKER_ACTIONS_TERMINATE_N=3