{"id":44742737,"url":"https://github.com/wexample/wex","last_synced_at":"2026-02-15T21:14:31.208Z","repository":{"id":41948759,"uuid":"96963311","full_name":"wexample/wex","owner":"wexample","description":"Streamline your bash scripts with wex","archived":false,"fork":false,"pushed_at":"2025-10-24T16:58:28.000Z","size":10262,"stargazers_count":4,"open_issues_count":22,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-24T18:39:11.189Z","etag":null,"topics":["bash","devops","devops-tools","framework","scripts","shell"],"latest_commit_sha":null,"homepage":"https://wexample.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wexample.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-07-12T03:56:04.000Z","updated_at":"2025-08-21T17:32:55.000Z","dependencies_parsed_at":"2024-05-05T09:25:56.789Z","dependency_job_id":"5482e12e-f7ec-4142-935d-f105fb7f51d9","html_url":"https://github.com/wexample/wex","commit_stats":null,"previous_names":[],"tags_count":342,"template":false,"template_full_name":null,"purl":"pkg:github/wexample/wex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wexample%2Fwex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wexample%2Fwex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wexample%2Fwex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wexample%2Fwex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wexample","download_url":"https://codeload.github.com/wexample/wex/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wexample%2Fwex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29489706,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T19:29:10.908Z","status":"ssl_error","status_checked_at":"2026-02-15T19:29:10.419Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","devops","devops-tools","framework","scripts","shell"],"created_at":"2026-02-15T21:14:30.631Z","updated_at":"2026-02-15T21:14:31.202Z","avatar_url":"https://github.com/wexample.png","language":"Python","readme":"# wex v5.0.165\n\nA CLI tool written in Python.\n\nJoin our community, support us, and find work at https://wexample.com 🤝❤️👨‍💻\n\n![wex](./src/resources/images/wex.gif)\n\n## Features\n\n - A strict framework for development and applications management.\n - Initialize and run Docker application.\n - Talk about your app with the AI integration.\n\n## Install\n\n### Requirements\n\n - Bash 5\n - Python 3.10\n - Docker 23\n\n### Debian APT Package\n\n    # Install dependencies\n    sudo apt update\n    sudo apt install gnupg2 wget -y\n    \n    # Add GPG key\n    sudo wget -O - https://apt.wexample.com/gpg | sudo apt-key add -\n    \n    # Add repo\n    echo \"deb http://apt.wexample.com/ stable main\" | sudo tee /etc/apt/sources.list.d/wexample.list\n    sudo apt-get update\n    \n    # Install\n    sudo apt install wex\n\nUpgrading\n\n    sudo apt update \u0026\u0026 sudo apt install --only-upgrade wex\n    # Or\n    wex update\n\n### Debian from sources\n\n    # Inside repository\n    sudo cli/install\n\n## Calling commands\n\n    # Basic call in core addons folders\n    wex core::logo/show\n\n    # User defined command, stored in home directory\n    wex ~local_command_group/local_command_name\n\n    # Custom command inside an app\n    wex .custom_command_group/custom_command_name\n\n    # Service command\n    wex @service_name::custom_command_group/command_name\n\n## Addons\n\nCommands and services are organised in several \"addons\".\n\n## Services\n\nEach service has a unique name for all addons.\n\n## Webhook listener\n\nA webhook listener allow you to control your server and applications remotely.\n\n    # Start listener on port 46017\n    wex app::webhook/listen \n\nThis is existing entrypoints :\n\n- `/status` : Return the current status of listener, useful to check availability\n- `/webhook/app_name/script_name` : Execute the given script of given application\n\n## Execution Flow\n\n1. **Initialization**:\n    - The entry point is a Bash script.\n    - On invocation, the script captures the initial command and generates a unique process ID.\n\n2. **Python Execution**:\n    - The Bash script then invokes the main Python script (`__main__.py`), passing along the generated process ID and\n      any additional arguments.\n    - During its execution, the Python script might determine that there are subsequent Bash commands that need to be\n      run. If so, it writes these commands to a temporary file.\n\n3. **Post-Python Bash Execution**:\n    - Once the Python script completes its execution, control returns to the Bash script.\n    - The Bash script checks for the existence of the aforementioned temporary file.\n    - If this file exists, the Bash script executes the commands contained within and then deletes the file.\n\n## License\n\nThis project is licensed under the MIT License. For more information, please see\nthe [MIT License on the official Open Source Initiative (OSI) website](https://opensource.org/licenses/MIT).\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwexample%2Fwex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwexample%2Fwex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwexample%2Fwex/lists"}