Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This configuration file was automatically generated by Gitpod.
# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml)
# and commit this file to your remote git repository to share the goodness with others.

# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart

tasks:
- init: |
pyenv install --skip-existing
pip install -r requirements.txt
- command: gunicorn --reload -b 0.0.0.0:8080 inspector.main:app

ports:
- port: 8080
onOpen: open-preview
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,14 @@ quickly share specific contents of a project hosted on PyPI when submitting
security reports.

Inspector is not currently supported for any other purpose.


## Develop

You can use any old way to install & run `inspector` locally.

We support `docker compose` via `make serve`.

You may also launch a Gitpod Workspace, which should set up most things for you:

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/pypi/inspector)