Skip to content
Snippets Groups Projects
Select Git revision
  • a16564b5ef75b2e3c5b2ad1f4251b8f1d0a1f581
  • main default
  • develop
  • feature/arch_support
  • feature/global_refactoring
  • v1.0.0
6 results

populate

Blame
  • populate 302 B
    #!/bin/bash
    
    # Check if we are in the right place
    if [ ! -d ./services ]; then
        echo "You must run this command from the project's root folder."
        exit 1
    fi
    
    rosetta/shell webapp "cd /opt/code && source /env.sh && source /db_conf.sh && BACKEND_LOG_LEVEL=ERROR python3 manage.py core_app_populate"