mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
a4f5edb5b7
* Add one-click-resume button * Add one-click-resume button * update jest snapshot * update style * Disable forward button when the flow is not intercepted * update jest snapshot * group items in main menu * add layout for quick actions menu Co-authored-by: Maximilian Hils <git@maximilianhils.com>
28 lines
717 B
Markdown
28 lines
717 B
Markdown
# Quick Start
|
|
|
|
**Be sure to follow the Development Setup instructions found in the README.md,
|
|
and activate your virtualenv environment before proceeding.**
|
|
|
|
- Run `yarn` to install dependencies
|
|
- Run `yarn run gulp` to start live-compilation.
|
|
- Run `mitmweb` and open http://localhost:8081/
|
|
|
|
## Testing
|
|
|
|
- Run `yarn test` to run the test suite.
|
|
|
|
|
|
## Advanced Tools
|
|
|
|
- `yarn run gulp` supports live-reloading if you install a matching
|
|
[browser extension](http://livereload.com/extensions/).
|
|
- You can debug application state using the [Redux DevTools](https://github.com/reduxjs/redux-devtools).
|
|
|
|
## Architecture
|
|
|
|
There are two components:
|
|
|
|
- Server: [`mitmproxy/tools/web`](../mitmproxy/tools/web)
|
|
|
|
- Client: `web`
|