Barebones template to get started with Solidity projects.
git clone https://github.com/0xmichalis/sol-template.git
cd sol-template
forge install
forge build
forge create --rpc-url <your_rpc_url> \
--private-key <your_private_key> \
--etherscan-api-key <your_etherscan_api_key> \
--verify \
src/Counter.sol:Counter
forge snapshot -vvv
forge fmt