Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuskawu/digisalad-assignment
https://github.com/yuskawu/digisalad-assignment
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/yuskawu/digisalad-assignment
- Owner: YuskaWu
- Created: 2024-05-14T21:30:37.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-20T11:48:20.000Z (7 months ago)
- Last Synced: 2024-05-21T01:12:17.803Z (7 months ago)
- Language: Vue
- Size: 1.84 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```