https://github.com/coatless-py-pkg/cloudyds
Python package to setup DS tools in cloud environment with port forwarding via ngrok
https://github.com/coatless-py-pkg/cloudyds
Last synced: 10 months ago
JSON representation
Python package to setup DS tools in cloud environment with port forwarding via ngrok
- Host: GitHub
- URL: https://github.com/coatless-py-pkg/cloudyds
- Owner: coatless-py-pkg
- License: apache-2.0
- Created: 2024-05-16T08:20:55.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-16T05:03:39.000Z (almost 2 years ago)
- Last Synced: 2025-08-11T04:57:07.120Z (10 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cloudyds
[](https://pypi.org/project/cloudyds/)
[](https://github.com/coatless/cloudyds/actions/workflows/test.yml)
[](https://github.com/coatless/cloudyds/releases)
[](https://github.com/coatless/cloudyds/blob/main/LICENSE)
> [!IMPORTANT]
>
> This package is a WIP.
## Installation
Install this library using `pip`:
```bash
pip install cloudyds
```
## Usage
Usage instructions go here.
## Development
To contribute to this library, first checkout the code. Then create a new virtual environment:
```bash
cd cloudyds
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
pytest
```