Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MLH-Fellowship/autoflow
A CLI that will automate your project builds and repository initiations for you | 👑 MLH Sprint 4
https://github.com/MLH-Fellowship/autoflow
Last synced: 6 days ago
JSON representation
A CLI that will automate your project builds and repository initiations for you | 👑 MLH Sprint 4
- Host: GitHub
- URL: https://github.com/MLH-Fellowship/autoflow
- Owner: MLH-Fellowship
- License: mit
- Created: 2020-11-17T17:50:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-27T16:40:58.000Z (almost 4 years ago)
- Last Synced: 2024-04-25T13:22:28.207Z (7 months ago)
- Language: Python
- Homepage: https://pypi.org/project/python-af/
- Size: 1.28 MB
- Stars: 6
- Watchers: 6
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
🔥 Autoflow 🔥
Automating your project workflows and making your life easier!
## 🔥 Introduction
Welcome to 🔥 Autoflow 🔥, the command-line tool that automates all of your project initializations and project setups!Using this CLI, you will be able to use your time more productively by working through your project instead of going through tedious parts of the initialization workflow. You'll be able to jump to multiple projects from anywhere, start your project backends more easily, and set up new projects with less commands.
## 🔥 Support
- Languages/Project types supported:
- OS support:
- Python versions supported:
## 🔥 Get Started### Let's install our package!
```pip install python-af```
or
```pip3 install python-af```
### There's also one configuration that needs to be done. First, move to the package directory:
```
cd ~/.autoflow
```
There, you will find an af-config.json file. This is your global configuration file that enables Autoflow to link to your projects directory, open your text editor,
or push to your GitHub. The defaults are set as below:
```
{
"defaultDirectory": Path.home()
"defaultTextEditor": "nano",
"github_token": "${{ secrets.GITHUB_TOKEN }}"
}
```
Replace the default directory config with the path to wherever you keep your projects and the default text editor config with whatever you like to use for your editor(ie. "code" for VSCode). The github token config is set up for use in our CI/CD workflow and will not actually work for you. Replace it with your personal access token, which you can generate by going to github.com, going to Settings, clicking on "Developer Settings" on the right-side menu, clicking on "Personal Access Tokens" in the new menu, and clicking "Generate new token" in the right upper corner.You are now set up to use Autoflow!
## 🔥 Usage
In order use Autoflow with any specific project, you will have to have a local configuration file within that project folder called af-config.json. This is how it should be set up:
```
{
"type": "",
"command": ""
}
```
This is to ensure that the `af start` command works properly and starts your project backend if you have one. The project types supported are listed in the [Support](#support) section.In order to have these instructions again and see the commands you can run, run this command in your terminal: `af --help`.
This will give you everything you need to start using this package and is similar to the instructions found here.## 🔥 Autoflow in Action
#### 🔥 Command: *af jump*
![autoflow git-cli](https://github.com/MLH-Fellowship/autoflow/blob/main/screenshots/jump.gif)
#### 🔥 Command: *af new*
![autoflow git-cli](https://github.com/MLH-Fellowship/autoflow/blob/main/screenshots/new.gif)
#### 🔥 Command: *af start*
![autoflow git-cli](https://github.com/MLH-Fellowship/autoflow/blob/main/screenshots/start.gif)
#### 🔥 Command: *af git-cli*
![autoflow git-cli](https://github.com/MLH-Fellowship/autoflow/blob/main/screenshots/git-cli.gif)
## 🔥 Tech Stack:
- **CLI Backend**:
- **Languages**:
- **Testing**:
- **CI/CD**:
- **Version Control**:## 🔥 Testing
We used multiple tools to enable unit testing and CI/CD for this project. For testing, we used pytest and click.testing to invoke the commands and test their outputs in several situations in one test script. This test script is setup to work with GitHub Actions, which is what we used for our CI/CD workflow. We were able to implement unit tests in this way, and all the tests are commented through to enable easy read-through for other potential contributors.GitHub actions allowed us to run multiple builds with multiple operating systems(macOS and Ubuntu) and multiple python versions(3.6, 3.7, 3.8). Once we add support for Windows, we will add that build to our matrix as well. As of right now, every time we push to the main branch of this project or merge something to the main branch, the GitHub actions testing workflow will run.
We will also be using releases to keep track of our versions. Our version released on November 24th will be version 1.
## 🔥 What We Learned
- Subprocesses in Python
- Testing with pytest
- Linting with flake8
- Setting up CI/CD with GitHub Actions
- Building a CLI with Python
- Publishing a package to PyPi
- Using the GitHub API for our CLI
In regards to soft skills, we learned to ask for help from our MLH mentors instead of trying to solve problems with little success.## 🔥 Contributing
Autoflow is fully Open-Source and open for contributions! We request you to respect our contribution guidelines as defined in our [CODE OF CONDUCT](https://github.com/MLH-Fellowship/autoflow/blob/main/CODE_OF_CONDUCT.md) and [CONTRIBUTING GUIDELINES](https://github.com/MLH-Fellowship/autoflow/blob/main/CONTRIBUTING.md).## ❤ Contributors
- [Dipanwita Guhathakurta](https://github.com/susiejojo)
- [Saurabh Kumar Suryan](https://github.com/sksuryan)
- [Shilpita Biswas](https://github.com/sh-biswas)Made with ❤️️ by Team Autoflow as part of MLH Explorer Fall Fellowship 2020 Sprint 4.