Skip to content

Latest commit

 

History

History
327 lines (280 loc) · 9.42 KB

README.md

File metadata and controls

327 lines (280 loc) · 9.42 KB

INIA

❯ REPLACE-ME

license last-commit repo-top-language repo-language-count


🔗 Table of Contents


📍 Overview

❯ REPLACE-ME


👾 Features

❯ REPLACE-ME


📁 Project Structure

└── inia/
    ├── .github
    │   └── workflows
    │       └── main.yml
    ├── README.md
    ├── inia
    │   ├── __init__.py
    │   ├── client.py
    │   ├── cloudformation
    │   │   ├── __init__.py
    │   │   └── client.py
    │   ├── codesuite
    │   │   ├── __init__.py
    │   │   └── client.py
    │   ├── controltower
    │   │   ├── __init__.py
    │   │   └── client.py
    │   ├── costexplorer
    │   │   ├── __init__.py
    │   │   └── client.py
    │   ├── rackspace.py
    │   ├── servicecatalog
    │   │   ├── __init__.py
    │   │   └── client.py
    │   ├── singlesignon
    │   │   ├── __init__.py
    │   │   └── client.py
    │   └── stepfunctions
    │       ├── __init__.py
    │       └── client.py
    ├── requirements.txt
    └── setup.py

📂 Project Index

INIA/
__root__
requirements.txt ❯ REPLACE-ME
setup.py ❯ REPLACE-ME
.github
workflows
main.yml ❯ REPLACE-ME
inia
rackspace.py ❯ REPLACE-ME
client.py ❯ REPLACE-ME
singlesignon
client.py ❯ REPLACE-ME
costexplorer
client.py ❯ REPLACE-ME
servicecatalog
client.py ❯ REPLACE-ME
cloudformation
client.py ❯ REPLACE-ME
stepfunctions
client.py ❯ REPLACE-ME
controltower
client.py ❯ REPLACE-ME
codesuite
client.py ❯ REPLACE-ME

🚀 Getting Started

☑️ Prerequisites

Before getting started with inia, ensure your runtime environment meets the following requirements:

  • Programming Language: Python
  • Package Manager: Pip

⚙️ Installation

Install inia using one of the following methods:

Build from source:

  1. Clone the inia repository:
❯ git clone https://github.com/grnet/inia
  1. Navigate to the project directory:
cd inia
  1. Install the project dependencies:

Using pip  

❯ pip install -r requirements.txt

🤖 Usage

Run inia using the following command: Using pip  

❯ python {entrypoint}

🧪 Testing

Run the test suite using the following command: Using pip  

❯ pytest

📌 Project Roadmap

TBD


🔰 Contributing

Contributing Guidelines
  1. Fork the Repository: Start by forking the project repository to your github account.
  2. Clone Locally: Clone the forked repository to your local machine using a git client.
    git clone https://github.com/grnet/inia
  3. Create a New Branch: Always work on a new branch, giving it a descriptive name.
    git checkout -b new-feature-x
  4. Make Your Changes: Develop and test your changes locally.
  5. Commit Your Changes: Commit with a clear message describing your updates.
    git commit -m 'Implemented new feature x.'
  6. Push to github: Push the changes to your forked repository.
    git push origin new-feature-x
  7. Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
  8. Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
Contributor Graph


🎗 License

This project is protected under the MIT License and Apache 2.0 License for the code imported from awscli.