Skip to content

Polkadot Hub App is a self-hosted web app for managing offices, meeting rooms, events, and people profiles. It's an opinionated hackspace-like approach for hybrid teams distributed across many continents and working on multiple projects.

License

paritytech/polkadot-hub-app

Repository files navigation

Logo

Polkadot Hub App

Polkadot Hub App is a self-hosted web app for managing offices, meeting rooms, events, and people profiles. It's an opinionated hackspace-like approach for hybrid teams distributed across many continents and working on multiple projects. The app is written in React, Node.js and Postgres.

Main features:

  • Multiple office locations + "Global" page for remote workers
  • Internal user profiles with custom tags, locations, timezones and onboarding
  • Flexible role system for access management
  • Google authentication ("Log in with Polkadot" button is in progress)
  • Modular architecture that allows you to expand the app with new widgets and integrations with external APIs

Getting Started

Modules and Integrations

All user-facing widgets of the application are (and should be) located in its own modules, which can depend on other modules, as well as use integrations to communicate with external services. Each module manages its own router and can implement all the necessary pages, widgets, webhooks for itself. Integrations are used to store credentials for different external services (e.g., sending email), so that you don't have to reconfigure this at each module level.

Modules

  • Desk Management: Admins can upload floor plans and allow users to book desks in the office. The system also supports additional check-in forms.
  • Meeting Room Booking: This feature is similar to desk booking, but for reserving meeting rooms. It also includes a special tablet-mode for on-wall devices.
  • Guest Invites: Users can invite guests to the office with or without additional admin approval.
  • Event Management: Special pages for events, with different visibility options (invites only, office-wide, public), and the ability to attach a check-in form asking attendees for necessary information, such as food preferences or flight times.
  • Forms: Self-hosted Google Forms replacement that allows users to create feedback forms and other types of forms. It also supports exporting data to .CSV files.
  • Help Center: Static pages and a sidebar widget for displaying any type of static information to users, such as links to the employee handbook, equipment request forms, public holidays, and more.
  • Onboarding Checklist: Checklist-like widget that guides users through a list of tasks they need to complete when onboarding. It can contain links to educational materials, other modules, or other actions, such as setting up VPN access.
  • News: Simple static news module with a widget and different visibility options.

Integrations

  • Matrix. Send notifications to Matrix rooms or users.
  • Email-SMTP. Notifications via email.
  • BambooHR Allow modules to parse information from BambooHR API.

Running Polkadot Hub App locally

Manual

To run the app on your local machine for development purposes, follow these steps:

  1. Clone the repository to your local machine:

    git clone git@github.com:paritytech/parity-portal-hq.git
    
  2. Install dependencies (of course, make sure you have Node 18+ and yarn installed on your machine):

    yarn install
    
  3. Generate all missing files with type definitions, so your IDE won't complain for errors.

    yarn client:build
    
  4. Set up a Postgres database. Use whatever method is convenient for you like Docker or Postgres.app.

  5. Create your own .env file in the root directory of the app with all necessary configuration using provided .example.env as a template.

  6. Create database schema

    yarn migrations:up
    
  7. Run the project

    yarn server:watch
    
    yarn client:watch
    

    Go to http://127.0.0.1:3000

Deployment

We are working on simplifying the deployment process of our application. Right now it's very much tailored to our infrastructure, so you'll have to write a lot of configs yourself to get it up and running.

Option 1. Using Helm charts

Use our charts from the helm folder as an example to create your own.

Option 2: Docker compose

Take a look at our docker-compose.yml and use it as inspiration for your own deploy. Don't forget to make the postgres database container persistent or use a managed solution.

Bugs and Ideas

If you want to report a bug or suggest an improvement, welcome to our Issues. Please describe the reproduction steps and attach any details that will help us understand your problem.

License

Polkadot Hub App is Apache-2.0 licensed.

About

Polkadot Hub App is a self-hosted web app for managing offices, meeting rooms, events, and people profiles. It's an opinionated hackspace-like approach for hybrid teams distributed across many continents and working on multiple projects.

Resources

License

Security policy

Stars

Watchers

Forks

Packages

No packages published