Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/yuskawu/digisalad-assignment


https://github.com/yuskawu/digisalad-assignment

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Interview Assignment

This project was created for interview tasks and also to practice Tailwind CSS for myself.

[Demo](https://yuskawu.github.io/digisalad-assignment/dist/)

## Setup

install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build
```

Build prerender page for Github Page:

```bash
# npm
npm run github-page

# pnpm
pnpm github-page

# yarn
yarn github-page

# bun
bun run github-page
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview
```