https://github.com/iroco-co/landing
https://github.com/iroco-co/landing
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/iroco-co/landing
- Owner: iroco-co
- License: mit
- Created: 2022-04-28T08:15:50.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-07T14:34:58.000Z (4 months ago)
- Last Synced: 2025-02-07T15:31:57.112Z (4 months ago)
- Language: Svelte
- Size: 2.65 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](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`.