Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.05 KB

CONTRIBUTING.md

File metadata and controls

45 lines (31 loc) · 1.05 KB

Contributing

Here's ways in which you can contribute:

Developing

Hollama is a static site built with:

  • TypeScript
  • Svelte & SvelteKit
  • Vite
  • Tailwind CSS
  • Playwright
  • Electron

Install dependencies with npm install, start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

# run the app with Electron
npm run electron

Building

To create a production version of Hollama:

npm run build

# or package with Electron
npm run electron:build

You can preview the production build with npm run preview.