sshifu-server 0.6.2 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +51 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # sshifu-server
2
+
3
+ SSH authentication server with OAuth gateway and certificate authority.
4
+
5
+ ## Installation
6
+
7
+ ### Quick Start (Recommended)
8
+
9
+ Use `npx` to run without installing:
10
+
11
+ ```bash
12
+ npx sshifu-server
13
+ ```
14
+
15
+ ### Install Globally
16
+
17
+ For frequent use, install globally:
18
+
19
+ ```bash
20
+ npm install -g sshifu-server
21
+ ```
22
+
23
+ Then use directly:
24
+
25
+ ```bash
26
+ sshifu-server
27
+ ```
28
+
29
+ The server will prompt you to configure:
30
+ - GitHub OAuth credentials
31
+ - Certificate Authority (CA) settings
32
+ - Server listen address
33
+
34
+ ## Features
35
+
36
+ - 🔐 **SSH Certificate Authority** - Issues short-lived SSH certificates
37
+ - 🌐 **OAuth Gateway** - GitHub organization authentication
38
+ - 📦 **Minimal Infrastructure** - Single server, no database required
39
+
40
+ ## Requirements
41
+
42
+ - Node.js 14.0.0+
43
+ - Go binary (will be downloaded automatically on install)
44
+
45
+ ## Full Documentation
46
+
47
+ See the complete documentation at [github.com/azophy/sshifu](https://github.com/azophy/sshifu)
48
+
49
+ ## License
50
+
51
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sshifu-server",
3
- "version": "0.6.2",
3
+ "version": "0.7.0",
4
4
  "description": "SSH authentication server with OAuth gateway and certificate authority",
5
5
  "main": "bin/sshifu-server.js",
6
6
  "bin": {