Skip to content

Commit

Permalink
back back
Browse files Browse the repository at this point in the history
  • Loading branch information
intranettus committed Jul 29, 2023
1 parent 90314a5 commit 448b2e7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ up: ##@Infra start local infra

down: ##@Infra stop local infra
taq stop sandbox
$(DOCKER_COMPOSE) down

data-reset: down ##@Infra reset data
docker volume rm infra_db_data

testdata: bootstrapped ##@Infra generate testdata
@$(npm) testdata
Expand Down Expand Up @@ -72,5 +76,4 @@ generate-types: compile ##@Contracts generate types
########################################
start: ##@App start app
@if [ ! -f ./app/.env ]; then cp ./app/config/.env.example ./app/config/.env; fi
@sed -i "s/\(RPC_URL *= *\).*/\1$(shell jq -r '.rpcUrl' .taq/config.local.development.json | sed "s/\//\\\\\\//g")/" ./app/config/.env
./app/bin/cake server
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ the hex of a merkle root of beneficiaries (address, amount), and the registry of
- [off-chain](./app), the merkle tree must be stored to be able to generate the merkle proofs required to claim.
An off-chain app also is helping on the merkle tree generation and validation before deploying the airdrop contract.

## Why PHP?

- it is still the king of cheap hosting.
- it has great retro-compatibilty
- it is [evolving](https://php.watch), there is a [PHP fundation](https://thephp.foundation/) now, and everything is [discussed openly](https://php.watch/rfcs).
- it stills runs an important part of the web, and we want to make decentralized apps, so why not using a popular language for this.

## Dev

1. Install dependencies: `make install`
Expand Down

0 comments on commit 448b2e7

Please sign in to comment.