Skip to content
Snippets Groups Projects
Select Git revision
  • bc7401622a8f9dc735c5d34beeb8b62fbf103c93
  • master default protected
  • elois-ci-refactor protected
  • gtest
  • hugo/gtest
  • json-output
  • nostr
  • 48-error-base-58-requirement-is-violated
  • no-rename
  • hugo/tx-comments
  • poka/dev
  • hugo/dev
  • tuxmain/mail
  • test-gtest
  • 0.4.3-gtest-RC1
  • 0.4.3-RC2
  • 0.4.3-RC1
  • 0.4.2
  • 0.4.1
  • 0.4.0
  • 0.3.0
  • 0.2.17
  • 0.2.16
  • 0.2.15
  • 0.2.14
  • 0.2.13
  • 0.2.12
  • 0.2.10
  • 0.2.9
  • 0.2.8
  • 0.2.7
  • 0.2.6
  • 0.2.5
33 results

example.md

Blame
    • Hugo Trentesaux's avatar
      4166a7b4
      add vault (!22) · 4166a7b4
      Hugo Trentesaux authored
      * move into function
      
      * remove unnecessary complexity
      
      * wip add phrase generation
      
      * prepare 0.2.7 release
      
      * remove dep
      
      * add predefined keys and update doc
      
      * wip add save from cmd line
      
      * improve error management
      
      * allow to store password-protected secret
      
      * wip use rage for password-encrypted keys
      
      * wip poc for keystore
      4166a7b4
      History
      add vault (!22)
      Hugo Trentesaux authored
      * move into function
      
      * remove unnecessary complexity
      
      * wip add phrase generation
      
      * prepare 0.2.7 release
      
      * remove dep
      
      * add predefined keys and update doc
      
      * wip add save from cmd line
      
      * improve error management
      
      * allow to store password-protected secret
      
      * wip use rage for password-encrypted keys
      
      * wip poc for keystore
    launch_test.sh 648 B
    #!/bin/bash
    
    testName=$1
    option=$2
    [[ ! $testName ]] && testName='gecko_complete'
    
    # Get local IP and set .env
    ip_address=$(hostname -I | awk '{print $1}')
    echo "ip_address=$ip_address" > .env
    [[ $option == 'human' ]] && echo "isHumanReading=true" >> .env
    
    ## Start local Duniter node
    cd integration_test/duniter
    docker compose down
    rm -rf data/chains
    docker compose up -d
    cd ../..
    
    # Start integration test
    flutter test integration_test/scenarios/$testName.dart && echo '0' > /tmp/geckoTestResult || echo '1' > /tmp/geckoTestResult
    
    # Reset .env
    echo "ip_address=127.0.0.1" > .env
    
    # Stop Duniter
    cd integration_test/duniter
    docker compose down