❯ REPLACE-ME
❯ REPLACE-ME
└── 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
INIA/
__root__
.github
workflows
inia
singlesignon
costexplorer
servicecatalog
cloudformation
stepfunctions
controltower
codesuite
Before getting started with inia, ensure your runtime environment meets the following requirements:
- Programming Language: Python
- Package Manager: Pip
Install inia using one of the following methods:
Build from source:
- Clone the inia repository:
❯ git clone https://github.com/grnet/inia
- Navigate to the project directory:
- Install the project dependencies:
Using pip
❯ pip install -r requirements.txt
Run inia using the following command:
Using pip
Run the test suite using the following command:
Using pip
TBD
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/grnet/inia
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
Contributor Graph
This project is protected under the MIT License and Apache 2.0 License for the code imported from awscli.