Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
111 changes: 15 additions & 96 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,122 +146,41 @@ docker run -d <your-image-name>

This will run the container in detached mode. You may need to adjust the run command based on the application inside the container (e.g., port mapping, volumes).

## Setup
## Development Setup

Instructions on how to set up the project go here.
This repository serves primarily as an architectural documentation and specification repository. The interactive applications are located in the `apps/` directory, and the core logic prototypes are in the `src/` directory.

## Usage
### Installation

Instructions and examples on how to use the project go here.


## About

[Provide a brief description of your project here.]

## Installation

To install the `mythotech-architecture` library, you can use pip:

```bash
pip install mythotech-architecture
```

If you are contributing to the project, you can install it in editable mode with development dependencies:
For local development, you can install the package in editable mode:

```bash
pip install -e .[dev]
```

## Usage

[Provide examples and instructions on how to use your library here.]

```python
# Example usage
from mythotech-architecture import core

# Call functions or use classes from the library
# result = core.some_function()
# print(result)
```

## Running Tests
### Running Tests

To run the tests for this project, navigate to the root directory of the repository and use pytest:

```bash
pytest
```

### Example Usage

## About

[Provide a brief description of your project here.]

## Installation

To install the `mythotech_architecture` library, you can use pip:

```bash
pip install mythotech_architecture
```

If you are contributing to the project, you can install it in editable mode with development dependencies:

```bash
pip install -e .[dev]
```

## Usage

[Provide examples and instructions on how to use your library here.]
The repository includes several prototype implementations demonstrating key concepts:

```python
# Example usage
# Import core mythotech architecture components
from mythotech_architecture import core

# Call functions or use classes from the library
# result = core.some_function()
# print(result)
```

## Running Tests

To run the tests for this project, navigate to the root directory of the repository and use pytest:

```bash
pytest
```

## About

[Provide a brief description of your project here.]

## Installation

To install the `mythotech_architecture` library, you can use pip:
```bash
pip install -e .[dev]
```

## Usage

[Provide examples and instructions on how to use your library here.]

```python
# Example usage
from mythotech_architecture.core import *
# Explore the Empathy Mint application - mints EMP tokens when participants
# validate mutual understanding in conversations using the Ache measurement protocol
# See src/applications/empathy_mint_app.js for implementation details

# Call functions or use classes from the library
# result = core.some_function()
# print(result)
# Review the ScarCoin Bridge contract - enables token bridging between Ache tokens
# and ScarCoin based on ScarIndex coherence oracle measurements
# See src/contracts/scarcoin_bridge.sol for implementation details
```

## Running Tests

To run the tests for this project, navigate to the root directory of the repository and use pytest:

```bash
pytest
```
For interactive exploration, visit the Next.js Living Lens application in `apps/living-lens-app/`.