Skip to content

Commit

Permalink
feat: Front end features
Browse files Browse the repository at this point in the history
  • Loading branch information
benborla committed Nov 18, 2023
1 parent 24f5413 commit dc79676
Show file tree
Hide file tree
Showing 48 changed files with 2,039 additions and 4,842 deletions.
7 changes: 3 additions & 4 deletions app/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/// <reference types="vite/client" />
VITE_APP_NAME="Fruity Vice App"
VITE_APP_AUTHOR="Ben Borla"
VITE_API_ENDPPOINT="http://public.test/"

VITE_BUILD_ADDRESS=
VITE_API_ENDPOINT=http://public.test
15 changes: 0 additions & 15 deletions app/.eslintrc.cjs

This file was deleted.

8 changes: 8 additions & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ dist
dist-ssr
coverage
*.local
.env*
*.env*
*.env.*

/cypress/videos/
/cypress/screenshots/
Expand All @@ -26,3 +29,8 @@ coverage
*.njsproj
*.sln
*.sw?

# Personal
.history
.vscode
.gitpod*
8 changes: 0 additions & 8 deletions app/.prettierrc.json

This file was deleted.

8 changes: 0 additions & 8 deletions app/.vscode/extensions.json

This file was deleted.

13 changes: 13 additions & 0 deletions app/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Creative Commons Attribution 4.0

Copyright (c) 2023 How Bizarre

You are free to:
Share — copy and redistribute the material in any medium or format
Adapt — remix, transform, and build upon the material for any purpose, even commercially.

The licensor cannot revoke these freedoms as long as you follow the license terms.

Under the following terms:
Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
52 changes: 0 additions & 52 deletions app/README.md

This file was deleted.

9 changes: 0 additions & 9 deletions app/env.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1 @@
/// <reference types="vite/client" />
VITE_APP_NAME="Fruity Vice App"
VITE_APP_AUTHOR="Ben Borla"

/* eslint-disable */
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
33 changes: 21 additions & 12 deletions app/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fruity Vice App - Ben Borla</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
<!doctype html>
<html lang="en" data-bs-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Fruity Vice App" />
<title>Fruity Vice App - Ben Borla</title>
<style>
body,
html {
width: 100%;
height: 100%;
}
</style>
</head>

<body class="d-flex flex-column">
<div id="app" class="d-flex flex-column h-100"></div>
<script type="module" src="./src/main.ts"></script>
</body>

</html>
Loading

0 comments on commit dc79676

Please sign in to comment.