Skip to main content

An AI-powered Command-Line Interface designed to streamline the SDLC by automating project workflows, including source control, CI/CD, ticket and documentation generation, and other processes.

Project description

Apollo CLI 🌔

PyPI Version License Build Status Coverage Status Code Style

Apollo-o1 CLI is a Python-based, AI Powered, command-line interface designed to enhance the Software Development Life Cycle experience by automating devOps and project management workflows.

This tool simplifies tasks like managing source control repositories i.e Github, CI/CD i.e github actions, Project management workflows and more, allowing teams to focus on building and delivering software efficiently.

Table of Contents

️ Features ⚙️

  • Automation Tools: Scripts for automating repetitive tasks, such as data processing, file management, github actions, and API integration.
  • Data Utilities: Scripts for data extraction, transformation, and analysis, including
    basic visualizations.
  • Task Scheduling: Scripts to schedule and automate recurring tasks (e.g., backups, log parsing).

Getting Started 🔑

Prerequisites

Ensure you have the following installed:

  • Python3 for running the scripts in this repo
  • Pip3 pythons package manager used to install the pypi package apollo

Installation

Via PyPI

Install the latest version using pip:

pip install apollo

Via Source

Clone the repository and install it locally:

git clone https://github.com/dj-io/apollo-cli.git
cd apollo-o1
pip install -r requirements.txt

Usage 🛠

Apollo o1 provides a collection of commands designed to streamline your development workflows. After installation, the apollo command is available in your terminal.

Show Available Commands

Run the following to see a list of available commands and their descriptions:

apollo --help

example output:

Usage: apollo [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  gh-create  Create and push a new repository to GitHub.
  gh-delete  Delete remote and local repositories, 1 by 1 or in bulk.
  gh-add     Push an existing local repository to a new GitHub repo.

Show Command Features

Run the following to see a more descriptive output of commands features and usage:

apollo <command> --help

example output:

Usage: apollo gh-create [OPTIONS]

  Create a new GitHub repository and initialize it locally.

  Features:
      - Allows you to specify a repository name and description.
      - Option to choose whether the repository is public or private.
      - Automatically initializes the repository with a README.
      - Sets up a remote connection to GitHub using the GitHub CLI.


  Considerations:
      - Ensure you are authenticated with the GitHub CLI (`gh auth login`) before using this command.
      - Requires the GitHub CLI installed locally.

Options:
  -h, --help  Show this message and exit.

Usage 🛠️

Key Features

  1. Interactive Directory Selection

    Apollo o1 automatically detects directories and provides multiple options:

    • Use the current working directory.
    • Select an existing directory from a list.
    • Create a new directory if needed.

    Example Prompt:

    Would you like to use the current directory as the parent directory? (yes/no)
    
  2. Caching

    The CLI stores information and preferences needed for use with various integrations i.e GitHub username for future use, eliminating repetitive inputs. If the username is already cached, the CLI will prompt you to reuse it.

    Example Prompt:

    Using cached GitHub username: dj-io
    

Contributing 💡

Getting started:

  1. Fork the repository.

    gh repo fork https://github.com/dj-io/apollo-o1.git --remote=true
    
  2. Create a new branch to your feature or bug fix:

    git checkout -b feature/your-feature-name
    
  3. Commit your changes:

    git commit -m "Description of your changes"
    
  4. Push to your branch:

    git push origin feature/your-feature-name
    
  5. Open a pull request on Github.

Developer Mode 🪄:

Setting up developer mode

Developer mode enables additional CLI commands (e.g., apollo build and apollo deploy) that are not available in production. Follow these steps to configure and use developer mode:


1. Create Environment Files

  • Navigate to the root directory of the project.
  • Create .env.dev and .env.prod files based on the provided .env.sample file.
cp .env.sample .env.dev
cp .env.sample .env.prod
  • Edit the .env.dev and .env.prod files with your environment-specific variables. For example:
APOLLO_DEV_MODE=1

2. Enable Developer Mode. Run the following command in your terminal to enable developer mode:

export ENV=dev
  • This sets the ENV variable to dev for the current terminal session, which ensures the script loads .env.dev and enables developer-specific features.

Using Developer Mode

Developer mode commands are available for contributors to streamline package development, testing, and deployment. These commands allow developers to rebuild and deploy apollo.


Available Commands

  1. Build

    Use the apollo build command to rebuild the package during development. This ensures all changes to the codebase are reflected in the package.

    apollo build
    
    • The command includes prompts to:
      • Cleans up old build artifacts.
      • Rebuilds the package into the dist/ directory
      • Installs the package locally for testing
      • Automatically installs missing dependencies from requirements.txt
  2. Deploy Use the apollo deploy command to package and deploy the CLI to PyPI (or TestPyPI)

    apollo deploy
    
    • The command includes prompts to:

      • Select between TestPyPI or Prod PyPI.
      • Provide changelog or release notes.
      • Confirm the deployment target.
      • Automatically detects the .pypirc file and verifies its validity.
    • Example

      apollo deploy --test  # Deploy to TestPyPI
      apollo deploy --prod  # Deploy to Prod PyPI
      
  3. Clean up Use the apollo clean-up command to run linting checks and automatically resolve using flake8 and black

    apollo clean-up
    
    • The command includes prompts to:
      • Confirm clean-up action if linting issues are found.
      • Traverses code base and runs black on each file with linting issues present

Additional Notes

  • The deploy command is only executable with credentials provided upon request

  • Switching Modes:

    • To switch back to production mode, run:
    export ENV=prod
    
    • This switch happens automatically during deployments.
  • Ensuring a Valid .pypirc File Exists:

    The deploy command relies on the .pypirc configuration file for TestPyPI and ProdPyPI deployments:

    - Automatic Detection

    • The CLI automatically detects the .pypirc file in your home directory (~/.pypirc) during deployment.

    • If the file is missing or lacks the necessary credentials for TestPyPI or ProdPyPI, the CLI will prompt you to create or update it.

    - Structure of .pypirc:

    Ensure your .pypirc file contains the correct repository configuration:

    [distutils]
    index-servers =
        pypi
        testpypi
    
    [pypi]
    repository = https://upload.pypi.org/legacy/
    username = __token__
    password = your-prod-token
    
    [testpypi]
    repository = https://test.pypi.org/legacy/
    username = __token__
    password = your-test-token
    

    - Prompts for Missing Credentials:

    • DON'T WORRY, If the .pypirc file is incomplete (e.g., missing a repository, username, or password), the CLI will guide you through updating it!
  • Run apollo --help in developer mode to view the full list of available commands

  • If you modify .env.dev or .env.prod, reload your environment variables:

    source ~/.zshrc  # For Zsh
    source ~/.bashrc  # For Bash
    

Guidelines:

  • Ensure your code is well-documented and adheres to PEP 8 standards.
  • Add tests for any new features or bug fixes.
  • Do Not Commit Sensitive Data: Ensure .env.dev and .env.prod are excluded from version control by including them in .gitignore.
  • Testing Locally: Use apollo build to test changes locally before deploying to PyPI or TestPyPI.
  • Deploy Responsibly: Always verify the environment (dev or prod) before running deployment commands to avoid accidental production deployments.

Versioning:

Given a version number major.minor.patch, all:

  • Breaking backwards compatibility bumps the MAJOR
  • New additions without breaking backwards compatibility bumps the MINOR
  • Bug fixes and misc changes bump the PATCH

For more information on semantic versioning, please visit http://semver.org/.

License: 📜

Copyright Stratum Labs LLC.

This project is licensed under the MIT License. See the LICENSE file for details.

Acknowledgments 🙏

Apollo o1 is inspired by the need to streamline development workflows. Special thanks to all future contributors who will help shape this project.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

apollo_o1-1.1.3.tar.gz (24.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

apollo_o1-1.1.3-py3-none-any.whl (25.1 kB view details)

Uploaded Python 3

File details

Details for the file apollo_o1-1.1.3.tar.gz.

File metadata

  • Download URL: apollo_o1-1.1.3.tar.gz
  • Upload date:
  • Size: 24.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.1

File hashes

Hashes for apollo_o1-1.1.3.tar.gz
Algorithm Hash digest
SHA256 e16c86030ab28af758f022285b6a65be06776a19a7d347fdb083615e52d93a6d
MD5 2326a396cde82066813f78e104f3ae85
BLAKE2b-256 d1c696272dff7e00c34edd70621d0add9f0d1a3659ae9d09c213b316ac5468b2

See more details on using hashes here.

File details

Details for the file apollo_o1-1.1.3-py3-none-any.whl.

File metadata

  • Download URL: apollo_o1-1.1.3-py3-none-any.whl
  • Upload date:
  • Size: 25.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.1

File hashes

Hashes for apollo_o1-1.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 f4b0168423d129498e01277742a052d3292cd13fadb16a71f50ab17e0659a449
MD5 4c64bf853931c5c01ba5062dd19fbdd5
BLAKE2b-256 19eb6a16f74657210d95bca5b3e9fed768bb8e57f0c7d60ab04b7fa673c9e8b2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page