Skip to content

Commit

Permalink
refactor(idp): migrate to Hono (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
bouassaba authored Dec 14, 2024
1 parent ab693bd commit aa55a4c
Show file tree
Hide file tree
Showing 17 changed files with 491 additions and 1,090 deletions.
8 changes: 1 addition & 7 deletions idp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@

## Getting Started

Run for development:

```shell
deno task dev
```

Run for production:
Run:

```shell
deno task start
Expand Down
22 changes: 4 additions & 18 deletions idp/deno.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,28 @@
{
"tasks": {
"start": "deno run --allow-read --allow-write --allow-env --allow-sys --allow-net src/app.ts",
"dev": "deno run --allow-read --allow-write --allow-env --allow-sys --allow-net --reload src/app.ts",
"compile": "deno compile --allow-read --allow-write --allow-env --allow-sys --allow-net --output voltaserve-idp src/app.ts",
"check": "deno check src/app.ts"
},
"imports": {
"@/": "./src/",
"hono": "npm:[email protected]",
"zod": "npm:[email protected]",
"@hono/zod-validator": "npm:@hono/[email protected]",
"camelize": "npm:[email protected]",
"cors": "npm:[email protected]",
"dotenv": "npm:[email protected]",
"express": "npm:[email protected]",
"express-validator": "npm:[email protected]",
"handlebars": "npm:[email protected]",
"hashids": "npm:[email protected]",
"jose": "npm:[email protected]",
"js-yaml": "npm:[email protected]",
"meilisearch": "npm:[email protected]",
"mime-types": "npm:[email protected]",
"morgan": "npm:[email protected]",
"multer": "npm:[email protected]",
"nodemailer": "npm:[email protected]",
"passport": "npm:[email protected]",
"passport-jwt": "npm:[email protected]",
"uuid": "npm:[email protected]",
"@types/body-parser": "npm:@types/[email protected]",
"@types/cors": "npm:@types/[email protected]",
"@types/express": "npm:@types/[email protected]",
"@types/js-yaml": "npm:@types/[email protected]",
"@types/mime-types": "npm:@types/[email protected]",
"@types/morgan": "npm:@types/[email protected]",
"@types/multer": "npm:@types/[email protected]",
"@types/node": "npm:@types/[email protected]",
"@types/nodemailer": "npm:@types/[email protected]",
"@types/passport": "npm:@types/[email protected]",
"@types/passport-jwt": "npm:@types/[email protected]",
"@types/uuid": "npm:@types/[email protected]",
"globals": "npm:[email protected]"
"@types/uuid": "npm:@types/[email protected]"
},
"lint": {
"rules": {
Expand Down
Loading

0 comments on commit aa55a4c

Please sign in to comment.