- 📍 Overview
- 👾 Features
- 📁 Project Structure
- 🚀 Getting Started
- 📌 Project Roadmap
- 🔰 Contributing
- 🎗 License
- 🙌 Acknowledgments
❯ 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__
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
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:
❯ cd inia
- Install the project dependencies:
❯ pip install -r requirements.txt
Run inia using the following command:
Using pip
❯ python {entrypoint}
Run the test suite using the following command:
Using pip
❯ pytest
TBD
- 💬 Join the Discussions: Share your insights, provide feedback, or ask questions.
- 🐛 Report Issues: Submit bugs found or log feature requests for the
inia
project. - 💡 Submit Pull Requests: Review open PRs, and submit your own PRs.
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!
This project is protected under the MIT License and Apache 2.0 License for the code imported from awscli.