Skip to content

Commit

Permalink
remove windows instructions
Browse files Browse the repository at this point in the history
docker-compose is now the recommended way to spinn up the local environment
  • Loading branch information
Øyvind Hatland committed Oct 23, 2023
1 parent b3b3220 commit 93d9170
Showing 1 changed file with 1 addition and 27 deletions.
28 changes: 1 addition & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,30 +134,4 @@ If you want to have data that persists between runtime, add them to `./packages/
* Also note that you need to have the `deploy-local` VSCode task running before running the tests.

## Workarounds
- To address key management issues, we've implemented a secure alternative approach (ED25519 is derived from secp256k1 private key).

# Windows
For Windows installations, please modify the following scripts in the specific package directory.
```
In packages/captable/package.json:
"prebuild": "if not exist tasksCopy mkdir tasksCopy & copy /Y tasks\\* tasksCopy & rmdir /Q /S tasks & mkdir tasks & type nul > tasks\\index.ts",
"postbuild": "xcopy /Y tasksCopy\\* tasks & rmdir /Q /S tasksCopy".
```

## Local Container

### Podman
```
podman build --target graph -t brok-graph .
podman build --target hardhat -t brok-hardhat .
podman build --target api -t brok-api .
podman-compose -p symfoni_graph -f podman-compose.yaml up
```

### Docker
```
docker build --target graph -t brok-graph .
docker build --target hardhat -t brok-hardhat .
docker build --target api -t brok-api .
docker-compose -p symfoni_graph -f docker-compose.yaml up
```
- To address key management issues, we've implemented a secure alternative approach (ED25519 is derived from secp256k1 private key).

0 comments on commit 93d9170

Please sign in to comment.