Buy and sell frames in movies. https://dreamframes.io/
Install needed Python modules: python -m pip install -r requirements.txt
Compile updated contracts: brownie compile
Compile all contracts (even not changed ones): brownie compile --all
Run tests: brownie test
Run tests in verbose mode: brownie test -v
Check code coverage: brownie test --coverage
Check available fixtures: brownie --fixtures .
Run script: brownie run <script_path>
Run console (very useful for debugging): brownie console
Run script: brownie run scripts/deploy_dream_frames_factory.py
A Dockerfile is available if you are experiencing issues testing locally.
run with:
docker build -f Dockerfile -t brownie .
docker run -v $PWD:/usr/src brownie pytest tests