Skip to content

Commit 8458e24

Browse files
committed
First Commit
0 parents  commit 8458e24

35 files changed

+3428
-0
lines changed

.editorconfig

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
root = true
2+
3+
[*]
4+
indent_size = 2
5+
tab_width = 2
6+
charset = utf-8

.gitignore

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
.env
15+
16+
# Editor directories and files
17+
.vscode/*
18+
!.vscode/extensions.json
19+
.idea
20+
.DS_Store
21+
*.suo
22+
*.ntvs*
23+
*.njsproj
24+
*.sln
25+
*.sw?

.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["Vue.volar"]
3+
}

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Receipt Search app built with Vue.js
2+
3+
This repository is created alongside the following [YouTube Tutorial](https://youtu.be/cfiN8lCA3RM)
4+
5+
## Demo
6+
7+
[https://tc-search-meals.netlify.app](https://vuejs-meals.netlify.app/)
8+
9+
## Installation
10+
11+
1. Clone the repository
12+
1. Run `npm install`
13+
1. Copy `.env.example` into `.env`
14+
1. Run `npm run dev` to start the application at http://localhost:3000
15+
16+
## Recommended IDE Setup
17+
18+
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar)

index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en" class="h-[100vh]">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Meal Apps with Vue JS</title>
8+
</head>
9+
<body class="h-[100vh] bg-gray-100">
10+
<div id="app" class="min-h-full pb-10"></div>
11+
<script type="module" src="/src/main.js"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)