Skip to content

Commit

Permalink
chore: setup as nuxt 3 project
Browse files Browse the repository at this point in the history
  • Loading branch information
colinscz committed Dec 1, 2024
1 parent efe3d3e commit e6f8eae
Show file tree
Hide file tree
Showing 21 changed files with 5,854 additions and 2,662 deletions.
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

75 changes: 70 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,75 @@
# coffee-journal ☕️☕️☕️
# Nuxt Minimal Starter

A coffee journal to log coffee tastings and ratings for different coffee roasts, sorts and drinks including coffee
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

## Technologies used
React + Vite
Make sure to install dependencies:

<img width="331" alt="grafik" src="https://user-images.githubusercontent.com/19342760/191601848-d806bc50-2762-4f9c-850f-3deab0ba2654.png">
```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 build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
6 changes: 6 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<template>
<div>
<NuxtRouteAnnouncer />
<NuxtWelcome />
</div>
</template>
13 changes: 0 additions & 13 deletions index.html

This file was deleted.

5 changes: 5 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-11-01',
devtools: { enabled: true }
})
Loading

0 comments on commit e6f8eae

Please sign in to comment.