Skip to content

Commit bf1b3b9

Browse files
committed
Added files and docs
0 parents  commit bf1b3b9

File tree

587 files changed

+211632
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

587 files changed

+211632
-0
lines changed

.gitignore

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# These are some examples of commonly ignored file patterns.
2+
# You should customize this list as applicable to your project.
3+
# Learn more about .gitignore:
4+
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
5+
6+
# Node artifact files
7+
node_modules/
8+
dist/
9+
build/
10+
.output/
11+
12+
# Nuxt.js artifact files
13+
*.log*
14+
.nuxt
15+
.nitro
16+
.cache
17+
.output
18+
dist
19+
20+
# Compiled Java class files
21+
*.class
22+
23+
# Compiled Python bytecode
24+
*.py[cod]
25+
26+
# Log files
27+
*.log
28+
29+
# Package files
30+
*.jar
31+
32+
# Maven
33+
target/
34+
dist/
35+
36+
# JetBrains IDE
37+
.idea/
38+
39+
# Unit test reports
40+
TEST*.xml
41+
42+
# Generated by MacOS
43+
.DS_Store
44+
45+
# Generated by Windows
46+
Thumbs.db
47+
48+
# Applications
49+
*.app
50+
*.exe
51+
*.war
52+
53+
# Large media files
54+
*.mp4
55+
*.tiff
56+
*.avi
57+
*.flv
58+
*.mov
59+
*.wmv
60+
61+
# PHP's composer's
62+
vendor/
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules
2+
*.log*
3+
.nuxt
4+
.nitro
5+
.cache
6+
.output
7+
.env
8+
dist
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
shamefully-hoist=true
2+
strict-peer-dependencies=false
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Nuxt 3 Minimal Starter
2+
3+
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
4+
5+
## Setup
6+
7+
Make sure to install the dependencies:
8+
9+
```bash
10+
# yarn
11+
yarn install
12+
13+
# npm
14+
npm install
15+
16+
# pnpm
17+
pnpm install
18+
```
19+
20+
## Development Server
21+
22+
Start the development server on http://localhost:3000
23+
24+
```bash
25+
npm run dev
26+
```
27+
28+
## Production
29+
30+
Build the application for production:
31+
32+
```bash
33+
npm run build
34+
```
35+
36+
Locally preview production build:
37+
38+
```bash
39+
npm run preview
40+
```
41+
42+
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<template>
2+
<div>
3+
<NuxtWelcome />
4+
</div>
5+
</template>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// https://nuxt.com/docs/api/configuration/nuxt-config
2+
export default defineNuxtConfig({
3+
// https://nuxt.com/docs/api/configuration/nuxt-config/#port
4+
devServer: {
5+
port: 5000
6+
}
7+
})

0 commit comments

Comments
 (0)