Metadata-Version: 2.1
Name: gorunn
Version: 0.0.2
Summary: CLI tool for managing local environments
Home-page: https://github.com/parapidcom/gorunn-py
Author: Goran Parapid
Author-email: goran.parapid@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click==8.1.7
Requires-Dist: gitdb==4.0.11
Requires-Dist: GitPython==3.1.43
Requires-Dist: Jinja2==3.1.3
Requires-Dist: MarkupSafe==2.1.5
Requires-Dist: PyYAML==6.0.1
Requires-Dist: smmap==5.0.1
Requires-Dist: requests==2.31.0
Requires-Dist: boto3==1.34.101
Requires-Dist: packaging==24.0
Requires-Dist: python-dotenv==1.0.1
Requires-Dist: inquirer==3.4.0
Requires-Dist: psutil==6.1.0

# Gorunn CLI

## Usage

- **gorunn --help** will show you all available commands
- **gorunn info** will show status of the current projects and its containers

tbd


## Configfurations

All params are available in container as environment variables.
- *Environment file is located in your `~/gorunn/envs/`. Feel free to edit it to your liking*
- *CLI generates **Dockerfile.gorunn** in project repo. You can commit that file and update it as per need with additional packages. It is used to build local image.

Services are accessible
- **mysql**:
  user(DB_USERNAME): gorunn
  password(DB_PASSWORD): password
  container_port: 3306
  forwarded_port: 13306
- **postgresql**:
  user(DB_USERNAME): gorunn
  password(DB_PASSWORD): password
  container_port: 5432
  forwarded_port: 15432
- **redis**
  container_port: 6379
  forwarded_port: 16379
- **opensearch**
  host_port: 9200
- forwarded_port: 19200
- **chroma**:
  host_port: 8000
- forwarded_port: 18000
