Skip to content

Commit

Permalink
update env file
Browse files Browse the repository at this point in the history
  • Loading branch information
shan8851 committed Sep 17, 2024
1 parent 8a2b503 commit fd915bb
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Ethereum
SEPOLIA_RPC_URL=YOUR_SEPOLIA_RPC_URL

# Deployment
PRIVATE_KEY=YOUR_PRIVATE_KEY

# Etherscan API Key for contract verification
ETHERSCAN_API_KEY=YOUR_ETHERSCAN_API_KEY

# Frontend
NEXT_PUBLIC_ALCHEMY_ID=YOUR_ALCHEMY_ID
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=YOUR_WALLET_CONNECT_PROJECT_ID

FAUCET_CONTRACT_ADDRESS=CONTRACT_ADDRESS
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ sepo-sip/
│ └── lib/ # Dependencies (e.g., OpenZeppelin)
├── frontend/ # Frontend application (to be implemented)
├── .github/ # GitHub-specific files (e.g., workflows)
├── .env.example # Example environment file
├── .solhint.json # Solidity linter configuration
├── .solhintignore # Solidity linter ignore file
├── Makefile # Project-wide task runner
└── README.md # This file
└── README.md # Project documentation
```

## Getting Started
Expand All @@ -47,6 +48,16 @@ sepo-sip/
make test
```

## Environment Setup

1. Copy `.env.example` to `.env`:
```
cp .env.example .env
```
2. Fill in your own values in the `.env` file.

Note: Never commit your `.env` file .

## Contributing

This dApp needs you! We cannot thrive without user donations. Please consider donating some ETH so that others can access it when needed. You can donate 0.1 ETH directly through the site. For larger donations, please reach out on [X](https://x.com/shan8851).
Expand Down

0 comments on commit fd915bb

Please sign in to comment.