Self-hostable dashboard using connectors to a multitude of ticketing systems. (SvelteKit, Shadcn-Svelte & Pocketbase)
Find a file
2023-06-06 20:16:15 +02:00
.github fix: Move dependabot to /.github 2023-06-06 18:11:28 +02:00
app Initial commit for working landing page 2023-06-06 03:17:35 +02:00
components fix: proper linking 2023-06-06 03:17:59 +02:00
hooks Initial commit for working landing page 2023-06-06 03:17:35 +02:00
lib Initial commit for working landing page 2023-06-06 03:17:35 +02:00
public Initial commit for working landing page 2023-06-06 03:17:35 +02:00
.editorconfig Initial commit for working landing page 2023-06-06 03:17:35 +02:00
.env.example Initial commit for working landing page 2023-06-06 03:17:35 +02:00
.eslintrc.json Initial commit for working landing page 2023-06-06 03:17:35 +02:00
.gitignore Initial commit for working landing page 2023-06-06 03:17:35 +02:00
.prettierignore Initial commit for working landing page 2023-06-06 03:17:35 +02:00
LICENSE Initial commit 2023-06-05 21:51:57 +02:00
next.config.js Initial commit for working landing page 2023-06-06 03:17:35 +02:00
package-lock.json Initial commit for working landing page 2023-06-06 03:17:35 +02:00
package.json Initial commit for working landing page 2023-06-06 03:17:35 +02:00
pnpm-lock.yaml Initial commit for working landing page 2023-06-06 03:17:35 +02:00
postcss.config.js Initial commit for working landing page 2023-06-06 03:17:35 +02:00
README.md feat: Added badges for SonarCloud and Vercel deployment 2023-06-06 18:06:55 +02:00
tailwind.config.js Initial commit for working landing page 2023-06-06 03:17:35 +02:00
toast-provider.tsx Initial commit for working landing page 2023-06-06 03:17:35 +02:00
tsconfig.json Initial commit for working landing page 2023-06-06 03:17:35 +02:00

Omnidash

Open Source Multi-client Ticket Dashboard

Installation

To install the project and its dependencies, follow these steps:

  1. Ensure you have pnpm installed on your system. If not, you can install it by running:

    npm install -g pnpm
    
  2. Run the following command to install the project dependencies:

    pnpm install
    

Environment Variables

After setting up the required services, you need to set the corresponding environment variables in the /.env file. To do this, follow these steps:

  1. Make a copy of the .env.example file:
    cp .env.example .env
    
  2. Open the /apps/web/.env file in a text editor and populate the values for the services mentioned above.

Build

To build the project, execute the following command:

pnpm build

Run

To run the project locally, use the following command:

pnpm run dev