René's URL Explorer Experiment


Title: Feature: Admin Onboarding Wizard & Configuration Improvements · Issue #95 · JavaScriptSolidServer/JavaScriptSolidServer · GitHub

Open Graph Title: Feature: Admin Onboarding Wizard & Configuration Improvements · Issue #95 · JavaScriptSolidServer/JavaScriptSolidServer

X Title: Feature: Admin Onboarding Wizard & Configuration Improvements · Issue #95 · JavaScriptSolidServer/JavaScriptSolidServer

Description: Summary This issue proposes improvements to the first-time admin experience and configuration system, inspired by industry best practices and Community Solid Server (CSS). The primary goal is to make JSS more approachable for new adminis...

Open Graph Description: Summary This issue proposes improvements to the first-time admin experience and configuration system, inspired by industry best practices and Community Solid Server (CSS). The primary goal is to ma...

X Description: Summary This issue proposes improvements to the first-time admin experience and configuration system, inspired by industry best practices and Community Solid Server (CSS). The primary goal is to ma...

Opengraph URL: https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/95

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Feature: Admin Onboarding Wizard \u0026 Configuration Improvements","articleBody":"## Summary\n\nThis issue proposes improvements to the first-time admin experience and configuration system, inspired by industry best practices and Community Solid Server (CSS). The primary goal is to make JSS more approachable for new administrators while maintaining flexibility for advanced users.\n\n## Current State\n\nJSS already has a solid configuration foundation:\n\n| Layer | Method | Priority |\n|-------|--------|----------|\n| Defaults | Hardcoded in `src/config.js` | Lowest |\n| Config file | `-c config.json` | Low |\n| Environment variables | `JSS_*` prefix | Medium |\n| CLI arguments | `--port`, `--idp`, etc. | Highest |\n\n**Existing features:**\n- `jss init` - Interactive CLI wizard for basic setup\n- `--print-config` - Debug/inspect current configuration\n- 30+ configurable options (port, SSL, IdP, quotas, federation, etc.)\n\n**Current gaps:**\n- No web-based first-run experience\n- No preset configurations for common use cases\n- No web-based configuration generator\n- First-time users must use CLI before seeing any UI\n\n---\n\n## Proposal 1: Web-Based First-Run Onboarding Wizard (Primary)\n\n### Problem\n\nWhen a new admin starts JSS for the first time, they must:\n1. Read documentation to understand options\n2. Run `jss init` or manually create a config\n3. Start the server\n4. Then figure out how to create their first account/pod\n\nMost modern self-hosted software detects first-run and presents a guided setup wizard in the browser.\n\n### Proposed Solution\n\nWhen the server starts and detects no existing setup (no accounts, no pods, or a missing `.setup-complete` marker), redirect all requests to `/setup` which presents a step-by-step wizard:\n\n```\nStep 1: Welcome\n┌─────────────────────────────────────────────────────────┐\n│   Welcome to JavaScript Solid Server                    │\n│                                                         │\n│   Let's configure your server in a few simple steps.   │\n│                                                         │\n│   [Get Started →]                                       │\n└─────────────────────────────────────────────────────────┘\n\nStep 2: Server Mode\n┌─────────────────────────────────────────────────────────┐\n│   How will you use this server?                         │\n│                                                         │\n│   ○ Personal server (single user, just for me)          │\n│   ○ Multi-user server (allow registrations)             │\n│   ○ Invite-only server (registration requires invite)   │\n│                                                         │\n│   [← Back]  [Next →]                                    │\n└─────────────────────────────────────────────────────────┘\n\nStep 3: Admin Account (if IdP enabled)\n┌─────────────────────────────────────────────────────────┐\n│   Create your administrator account                     │\n│                                                         │\n│   Username: [_______________]                           │\n│   Email:    [_______________]                           │\n│   Password: [_______________]                           │\n│   Confirm:  [_______________]                           │\n│                                                         │\n│   [← Back]  [Next →]                                    │\n└─────────────────────────────────────────────────────────┘\n\nStep 4: Features (Optional)\n┌─────────────────────────────────────────────────────────┐\n│   Enable additional features:                           │\n│                                                         │\n│   ☐ WebSocket Notifications                            │\n│   ☐ Content Negotiation (Turtle/RDF)                   │\n│   ☐ ActivityPub Federation                             │\n│   ☐ Nostr Relay                                        │\n│   ☐ Git Backend                                        │\n│                                                         │\n│   [← Back]  [Next →]                                    │\n└─────────────────────────────────────────────────────────┘\n\nStep 5: Complete\n┌─────────────────────────────────────────────────────────┐\n│   ✓ Setup Complete!                                     │\n│                                                         │\n│   Your server is ready at: https://example.com          │\n│   Admin account: admin@example.com                      │\n│                                                         │\n│   Configuration saved to: ./config.json                 │\n│                                                         │\n│   [Go to Dashboard →]                                   │\n└─────────────────────────────────────────────────────────┘\n```\n\n### Detection Logic\n\n```javascript\n// In server.js onReady hook\nconst setupComplete = fs.existsSync(path.join(dataRoot, '.setup-complete'));\nconst hasAccounts = fs.existsSync(path.join(dataRoot, '.accounts'));\nconst hasPods = fs.readdirSync(dataRoot).some(f =\u003e !f.startsWith('.'));\n\nif (!setupComplete \u0026\u0026 !hasAccounts \u0026\u0026 !hasPods) {\n  // Redirect all non-setup routes to /setup\n}\n```\n\n### Headless/Docker Override\n\nFor automated deployments, allow skipping the wizard via environment variable:\n\n```bash\nJSS_SKIP_SETUP_WIZARD=true\nJSS_ADMIN_EMAIL=admin@example.com\nJSS_ADMIN_PASSWORD=securepassword\n```\n\n### Industry Comparison\n\n| Software | First-Run Experience |\n|----------|---------------------|\n| **Nextcloud** | Web wizard: admin account → database → data directory |\n| **Jellyfin** | Web wizard: admin → libraries → metadata → remote access |\n| **Coolify** | Web wizard: admin account → localhost/remote selection |\n| **Portainer** | Web wizard: admin account → environment type |\n| **Mastodon** | CLI wizard (`rake mastodon:setup`) |\n| **CSS** | No wizard (relies on external config generator) |\n| **JSS (current)** | CLI wizard only (`jss init`) |\n| **JSS (proposed)** | Web wizard + CLI wizard + env var bootstrap |\n\n---\n\n## Proposal 2: Configuration Presets\n\n### Problem\n\nNew users face 30+ configuration options without guidance on which combinations make sense for their use case.\n\n### Proposed Solution\n\nAdd preset profiles that bundle sensible defaults for common scenarios:\n\n```bash\n# CLI usage\njss start --preset personal\njss start --preset community\njss start --preset federation\n\n# Or in config file\n{\n  \"preset\": \"personal\",\n  \"port\": 8443  // overrides still work\n}\n```\n\n### Suggested Presets\n\n#### `minimal` - Development/Testing\n```json\n{\n  \"port\": 3000,\n  \"multiuser\": false,\n  \"singleUser\": true,\n  \"singleUserName\": \"me\",\n  \"conneg\": false,\n  \"notifications\": false,\n  \"idp\": false\n}\n```\n\n#### `personal` - Single-User Production\n```json\n{\n  \"port\": 443,\n  \"multiuser\": false,\n  \"singleUser\": true,\n  \"conneg\": true,\n  \"notifications\": true,\n  \"idp\": true,\n  \"mashlib\": true\n}\n```\n\n#### `community` - Multi-User Server\n```json\n{\n  \"port\": 443,\n  \"multiuser\": true,\n  \"conneg\": true,\n  \"notifications\": true,\n  \"idp\": true,\n  \"inviteOnly\": false,\n  \"defaultQuota\": \"100MB\"\n}\n```\n\n#### `private` - Invite-Only Server\n```json\n{\n  \"port\": 443,\n  \"multiuser\": true,\n  \"conneg\": true,\n  \"notifications\": true,\n  \"idp\": true,\n  \"inviteOnly\": true,\n  \"defaultQuota\": \"1GB\"\n}\n```\n\n#### `federation` - Federated Social Server\n```json\n{\n  \"port\": 443,\n  \"multiuser\": true,\n  \"conneg\": true,\n  \"notifications\": true,\n  \"idp\": true,\n  \"activitypub\": true,\n  \"nostr\": true\n}\n```\n\n### Enhanced `jss init` with Presets\n\n```\n$ jss init\n\n  JavaScript Solid Server Setup\n\n? Choose a starting point:\n  \u003e Personal server (single user, simple setup)\n    Community server (multi-user, open registration)\n    Private server (multi-user, invite-only)\n    Federation server (ActivityPub + Nostr)\n    Minimal (development/testing)\n    Custom (configure everything manually)\n\n? Port (443): \n? Domain (localhost): example.com\n...\n```\n\n---\n\n## Proposal 3: Web-Based Configuration Generator\n\n### Problem\n\nCSS provides a web-based configuration generator that lets users click through options and download a config file. JSS lacks this, requiring users to read docs or use `jss init`.\n\n### Proposed Solution\n\nCreate a static web page (can be hosted on GitHub Pages or docs site) that:\n\n1. Presents all configuration options with descriptions\n2. Shows real-time preview of generated config\n3. Validates combinations (e.g., warns if IdP enabled without HTTPS)\n4. Exports as JSON config file or docker-compose snippet\n\n### Mockup\n\n```\n┌─────────────────────────────────────────────────────────────────┐\n│  JSS Configuration Generator                                    │\n├─────────────────────────────────────────────────────────────────┤\n│                                                                 │\n│  PRESET: [Personal ▼]                                          │\n│                                                                 │\n│  ─── Server ───                    ─── Preview ───             │\n│  Port:     [3000    ]              {                           │\n│  Host:     [0.0.0.0 ]                \"port\": 3000,             │\n│  Data Dir: [./data  ]                \"host\": \"0.0.0.0\",        │\n│                                      \"root\": \"./data\",          │\n│  ─── Features ───                    \"singleUser\": true,        │\n│  ☑ Single-user mode                  \"idp\": true,               │\n│  ☑ Identity Provider                 \"notifications\": true      │\n│  ☑ WebSocket Notifications         }                           │\n│  ☐ Content Negotiation                                         │\n│  ☐ ActivityPub                     [Copy] [Download]           │\n│  ☐ Nostr Relay                                                 │\n│                                     ─── Docker ───              │\n│  ─── Security ───                   services:                   │\n│  ☐ SSL/TLS                            jss:                      │\n│    Key:  [          ]                   image: jss:latest       │\n│    Cert: [          ]                   environment:            │\n│  ☐ Invite-only                           - JSS_PORT=3000        │\n│                                          - JSS_SINGLE_USER=true │\n│  ─── Quotas ───                                                 │\n│  Default: [50MB     ]              [Copy Docker Compose]        │\n│                                                                 │\n└─────────────────────────────────────────────────────────────────┘\n```\n\n### Implementation Options\n\n1. **Standalone static site** - React/Vue app on GitHub Pages\n2. **Built into JSS** - Serve at `/.well-known/config-generator` when in dev mode\n3. **Part of docs site** - Integrate with documentation\n\n### CSS Comparison\n\nCSS provides this at: https://communitysolidserver.github.io/configuration-generator/v5/\n\nTheir generator covers:\n- Storage backend (memory/file/SPARQL)\n- Pod management (registration, URL format)\n- Security (HTTPS, authorization)\n- Features (WebSocket, setup endpoints)\n\n---\n\n## Proposal 4: Configuration Validation Command\n\n### Problem\n\nConfiguration errors are only discovered at runtime, leading to failed startups or unexpected behavior.\n\n### Proposed Solution\n\nAdd `jss validate` command:\n\n```bash\n$ jss validate --config config.json\n\nValidating configuration...\n\n✓ Port 8443 is valid\n✓ Host 0.0.0.0 is valid  \n✓ Data directory ./data exists and is writable\n✓ SSL certificate found: ./ssl/cert.pem\n✓ SSL private key found: ./ssl/key.pem\n✓ SSL certificate is valid (expires: 2025-12-01)\n⚠ Warning: IdP issuer URL should use HTTPS in production\n✓ Default quota 50MB is valid\n✓ Preset 'personal' applied successfully\n\nConfiguration is valid with 1 warning.\n```\n\n### Validation Checks\n\n- Port range (1-65535)\n- Data directory exists and is writable\n- SSL files exist and are readable\n- SSL certificate validity and expiration\n- Required combinations (e.g., subdomains requires baseDomain)\n- Mutual exclusions (e.g., can't use both mashlib and mashlibCdn)\n- Security warnings (IdP without HTTPS, weak configurations)\n\n---\n\n## Implementation Priority\n\n| Priority | Feature | Effort | Impact |\n|----------|---------|--------|--------|\n| **P0** | Web-based first-run wizard | Medium | High - Industry standard, critical for adoption |\n| **P1** | Configuration presets | Low | High - Quick win, improves UX significantly |\n| **P2** | Enhanced `jss init` with presets | Low | Medium - Improves CLI experience |\n| **P3** | Config validation command | Low | Medium - Catches errors early |\n| **P4** | Web-based config generator | Medium | Medium - Nice-to-have, can be separate project |\n\n---\n\n## References\n\n### Community Solid Server\n- [CSS Configuration Generator](https://communitysolidserver.github.io/configuration-generator/v5/)\n- [CSS Starting the Server](https://communitysolidserver.github.io/CommunitySolidServer/7.x/usage/starting-server/)\n- [CSS Custom Configurations](https://github.com/CommunitySolidServer/tutorials/blob/main/custom-configurations.md)\n\n### Industry Examples\n- [Nextcloud Installation Wizard](https://docs.nextcloud.com/server/latest/admin_manual/installation/installation_wizard.html)\n- [Jellyfin Setup Wizard](https://jellyfin.org/docs/general/post-install/setup-wizard/)\n- [Portainer Initial Setup](https://docs.portainer.io/start/install/server/setup)\n- [Coolify Installation](https://coolify.io/docs/get-started/installation)\n- [Vaultwarden Configuration](https://github.com/dani-garcia/vaultwarden/wiki/Configuration-overview)\n- [Mastodon Server Setup](https://docs.joinmastodon.org/user/run-your-own/)\n\n### Best Practices\n- [Self-Hosting Guide](https://github.com/mikeroyal/Self-Hosting-Guide)\n- [Self-Hosted Software Best Practices](https://blog.dreamfactory.com/self-hosted-software-best-practices-for-secure-and-reliable-deployment)\n\n---\n\n## Questions for Discussion\n\n1. Should the web wizard be the default, or should it require `--enable-setup-wizard`?\n2. Should preset configs be bundled in the package or loaded from a URL?\n3. Should the config generator be part of JSS or a separate project?\n4. What additional presets would be useful?\n5. Should the wizard support themes/branding customization?\n\n/cc @maintainers","author":{"url":"https://github.com/melvincarvalho","@type":"Person","name":"melvincarvalho"},"datePublished":"2026-01-19T12:43:57.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/95/JavaScriptSolidServer/issues/95"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:58494f65-86fb-a8e9-08a1-2b381d9d1a62
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id837C:BAAC2:454DFB:5FCF9E:69774E11
html-safe-nonce1247f8fdd6946f5af9afaf79e0833eafca1ef7b80930755ea78097970cba4566
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4MzdDOkJBQUMyOjQ1NERGQjo1RkNGOUU6Njk3NzRFMTEiLCJ2aXNpdG9yX2lkIjoiNzM3NzkzMzM2MTU3OTc3MzQ1OCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacb1d338a0699f15714b9b4241c488063b6c4595098cd45a6174111c6df4fe2aab
hovercard-subject-tagissue:3829572285
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/JavaScriptSolidServer/JavaScriptSolidServer/95/issue_layout
twitter:imagehttps://opengraph.githubassets.com/48b34a67c76aea4d421443220b01ac5e38a975cdab4c217af200770970d429e1/JavaScriptSolidServer/JavaScriptSolidServer/issues/95
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/48b34a67c76aea4d421443220b01ac5e38a975cdab4c217af200770970d429e1/JavaScriptSolidServer/JavaScriptSolidServer/issues/95
og:image:altSummary This issue proposes improvements to the first-time admin experience and configuration system, inspired by industry best practices and Community Solid Server (CSS). The primary goal is to ma...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamemelvincarvalho
hostnamegithub.com
expected-hostnamegithub.com
None3310064f35a62c06a4024ba37f41c06836f39376a095c2dfd2c4b693c34965be
turbo-cache-controlno-preview
go-importgithub.com/JavaScriptSolidServer/JavaScriptSolidServer git https://github.com/JavaScriptSolidServer/JavaScriptSolidServer.git
octolytics-dimension-user_id205442424
octolytics-dimension-user_loginJavaScriptSolidServer
octolytics-dimension-repository_id958025407
octolytics-dimension-repository_nwoJavaScriptSolidServer/JavaScriptSolidServer
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id958025407
octolytics-dimension-repository_network_root_nwoJavaScriptSolidServer/JavaScriptSolidServer
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release67d5f8d1d53c3cc4f49fc3bb8029933c3dc219e6
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/95#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FJavaScriptSolidServer%2FJavaScriptSolidServer%2Fissues%2F95
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FJavaScriptSolidServer%2FJavaScriptSolidServer%2Fissues%2F95
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=JavaScriptSolidServer%2FJavaScriptSolidServer
Reloadhttps://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/95
Reloadhttps://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/95
Reloadhttps://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/95
JavaScriptSolidServer https://github.com/JavaScriptSolidServer
JavaScriptSolidServerhttps://github.com/JavaScriptSolidServer/JavaScriptSolidServer
Notifications https://github.com/login?return_to=%2FJavaScriptSolidServer%2FJavaScriptSolidServer
Fork 4 https://github.com/login?return_to=%2FJavaScriptSolidServer%2FJavaScriptSolidServer
Star 4 https://github.com/login?return_to=%2FJavaScriptSolidServer%2FJavaScriptSolidServer
Code https://github.com/JavaScriptSolidServer/JavaScriptSolidServer
Issues 59 https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues
Pull requests 6 https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/pulls
Actions https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/actions
Projects 0 https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/projects
Security 0 https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/security
Insights https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/pulse
Code https://github.com/JavaScriptSolidServer/JavaScriptSolidServer
Issues https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues
Pull requests https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/pulls
Actions https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/actions
Projects https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/projects
Security https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/security
Insights https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/pulse
New issuehttps://github.com/login?return_to=https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/95
New issuehttps://github.com/login?return_to=https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/95
Feature: Admin Onboarding Wizard & Configuration Improvementshttps://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/95#top
https://github.com/melvincarvalho
https://github.com/melvincarvalho
melvincarvalhohttps://github.com/melvincarvalho
on Jan 19, 2026https://github.com/JavaScriptSolidServer/JavaScriptSolidServer/issues/95#issue-3829572285
https://communitysolidserver.github.io/configuration-generator/v5/https://communitysolidserver.github.io/configuration-generator/v5/
CSS Configuration Generatorhttps://communitysolidserver.github.io/configuration-generator/v5/
CSS Starting the Serverhttps://communitysolidserver.github.io/CommunitySolidServer/7.x/usage/starting-server/
CSS Custom Configurationshttps://github.com/CommunitySolidServer/tutorials/blob/main/custom-configurations.md
Nextcloud Installation Wizardhttps://docs.nextcloud.com/server/latest/admin_manual/installation/installation_wizard.html
Jellyfin Setup Wizardhttps://jellyfin.org/docs/general/post-install/setup-wizard/
Portainer Initial Setuphttps://docs.portainer.io/start/install/server/setup
Coolify Installationhttps://coolify.io/docs/get-started/installation
Vaultwarden Configurationhttps://github.com/dani-garcia/vaultwarden/wiki/Configuration-overview
Mastodon Server Setuphttps://docs.joinmastodon.org/user/run-your-own/
Self-Hosting Guidehttps://github.com/mikeroyal/Self-Hosting-Guide
Self-Hosted Software Best Practiceshttps://blog.dreamfactory.com/self-hosted-software-best-practices-for-secure-and-reliable-deployment
@maintainershttps://github.com/maintainers
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.