An open API service indexing awesome lists of open source software.

https://github.com/iroco-co/landing


https://github.com/iroco-co/landing

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

[![CircleCI](https://dl.circleci.com/status-badge/img/gh/iroco-co/landing/tree/main.svg?style=svg&circle-token=8cb0d5262f24c0c3d6b3344ff77494ae14f7ef8c)](https://dl.circleci.com/status-badge/redirect/gh/iroco-co/landing/tree/main)

# Iroco landing

Sveltekit Iroco landing page.

It needs node 14.15, and 16 for running playwright end-to-end tests.

see [this url](https://github.com/nodesource/distributions/blob/master/README.md) for installing node versions.

## Developing

You can install dependencies with `npm install` (or `pnpm install` or `yarn`). Then run the unitests with

```bash
$ npm run test
```

Then run the playwright end-to-end tests (after installing playwright browser) :

```bash
$ npx playwright install
$ npm run eetest
```

To run a server :

```bash
$ npm run dev

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

## Building

To create a static deployable version of your app with [svelte adapter static](https://github.com/icdance/sveltekit/tree/master/packages/adapter-static):

```bash
npm run build
```

You can preview the production build with `npm run preview`.