Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename package to @galaxyproject/gx-it-proxy and update repository URL #28

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
## Invoking

This project can be invoked from ``lib/main.js`` script in the source or
installed and invoked through its [published package](https://www.npmjs.com/package/gx-it-proxy) via npm or npx.
installed and invoked through its [published package](https://www.npmjs.com/package/@galaxyproject/gx-it-proxy) via npm or npx.

```console
$ npx gx-it-proxy --version
$ npx gx-it-proxy --sessions test.sqlite --port 8001 # use SQLite
$ npx gx-it-proxy --sessions test.json --port 8001 # use a JSON file
$ npx gx-it-proxy --sessions postgresql:///galaxy?host=/var/run/postgresql --port 8001 # use PostgreSQL
$ npx @galaxyproject/gx-it-proxy --version
$ npx @galaxyproject/gx-it-proxy --sessions test.sqlite --port 8001 # use SQLite
$ npx @galaxyproject/gx-it-proxy --sessions test.json --port 8001 # use a JSON file
$ npx @galaxyproject/gx-it-proxy --sessions postgresql:///galaxy?host=/var/run/postgresql --port 8001 # use PostgreSQL
```

## Double Proxy
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "gx-it-proxy",
"name": "@galaxyproject/gx-it-proxy",
"version": "0.2.0",
"description": "A dynamic reverse proxy for Interactive Tools in Galaxy",
"main": "lib/main.js",
Expand All @@ -16,7 +16,7 @@
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/usegalaxy-eu/gie-nodejs-proxy"
"url": "git://github.com/galaxyproject/gx-it-proxy"
},
"scripts": {
"test": "vitest",
Expand Down
Loading