Metadata-Version: 2.4
Name: invest-ai
Version: 0.1.2
Summary: Invest-AI project
Author: parkingownia
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: build>=1.0; extra == "dev"
Requires-Dist: pytest>=6.0; extra == "dev"

# invest-ai
Projekt inicjalny utworzony na dysku NAS.

## MVP CLI

```bash
invest-ai analyze AAPL --price 100 --target 120 --risk medium
invest-ai analyze AAPL --price 100 --target 120 --risk medium --format json
```

## Lokalne komendy

```bash
make install
make test
make run
```

Bez `make`:

```bash
sh scripts/dev.sh install
sh scripts/dev.sh test
sh scripts/dev.sh run
```

## Uruchamianie na NAS

Kod jest na udziale SMB `LCARS:/web/invest-ai`, ale komendy uruchamiane z macOS nadal obciazaja lokalna maszyne. Zeby wykonywanie dzialo sie na NAS, wlacz SSH albo uruchamiaj projekt przez Container Manager/Docker na NAS.

Po wlaczeniu SSH:

```bash
ssh data@LCARS.local
cd /volume1/web/invest-ai
sh scripts/dev.sh install
sh scripts/dev.sh test
sh scripts/dev.sh run
```

Makefile tworzy osobne srodowisko dla systemu, np. `.venv-linux` na NAS i `.venv-darwin` na macOS.

Przez Docker/Container Manager na NAS:

```bash
cd /volume1/web/invest-ai
docker compose build
docker compose run --rm app
```
