-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π¦π πβ Initial Commit βππ¦π
- Loading branch information
0 parents
commit a085eb9
Showing
39 changed files
with
39,109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
> 1% | ||
last 2 versions | ||
not dead |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[*.{js,jsx,ts,tsx,vue}] | ||
quote_type = single | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
max_line_length = 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true, | ||
}, | ||
extends: ['plugin:vue/vue3-essential', '@vue/airbnb', '@vue/typescript/recommended'], | ||
parserOptions: { | ||
ecmaVersion: 2020, | ||
}, | ||
rules: { | ||
eqeqeq: 'off', | ||
'import/no-unresolved': 'off', | ||
'no-unused-vars': 'warn', | ||
'no-console': 'off', | ||
'func-names': 'off', | ||
'no-process-exit': 'off', | ||
'object-shorthand': 'off', | ||
'class-methods-use-this': 'off', | ||
'consistent-return': 'off', | ||
'no-underscore-dangle': 'off', | ||
'no-shadow': 'off', | ||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', | ||
'object-curly-newline': ['warn', { ObjectPattern: { multiline: true } }], | ||
}, | ||
}; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
# gitignore created on 12/06/21 at 23:34 | ||
# Disable reminder in prompt | ||
ignoredirmessage | ||
|
||
# OS generated files | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# Other | ||
.installed | ||
|
||
### Node ### | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
.pnpm-debug.log* | ||
# Diagnostic reports (https://nodejs.org/api/report.html) | ||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json | ||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
# Coverage directory used by tools like istanbul | ||
coverage | ||
*.lcov | ||
# nyc test coverage | ||
.nyc_output | ||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
# Bower dependency directory (https://bower.io/) | ||
bower_components | ||
# node-waf configuration | ||
.lock-wscript | ||
# Compiled binary addons (https://nodejs.org/api/addons.html) | ||
build/Release | ||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
# Snowpack dependency directory (https://snowpack.dev/) | ||
web_modules/ | ||
# TypeScript cache | ||
*.tsbuildinfo | ||
# Optional npm cache directory | ||
.npm | ||
# Optional eslint cache | ||
.eslintcache | ||
# Microbundle cache | ||
.rpt2_cache/ | ||
.rts2_cache_cjs/ | ||
.rts2_cache_es/ | ||
.rts2_cache_umd/ | ||
# Optional REPL history | ||
.node_repl_history | ||
# Output of 'npm pack' | ||
*.tgz | ||
# Yarn Integrity file | ||
.yarn-integrity | ||
# dotenv environment variables file | ||
.env | ||
.env.test | ||
.env.production | ||
# parcel-bundler cache (https://parceljs.org/) | ||
.cache | ||
.parcel-cache | ||
# Next.js build output | ||
.next | ||
out | ||
# Nuxt.js build / generate output | ||
.nuxt | ||
dist | ||
# Gatsby files | ||
.cache/ | ||
# Comment in the public line in if your project uses Gatsby and not Next.js | ||
# https://nextjs.org/blog/next-9-1#public-directory-support | ||
# public | ||
# vuepress build output | ||
.vuepress/dist | ||
# Serverless directories | ||
.serverless/ | ||
# FuseBox cache | ||
.fusebox/ | ||
# DynamoDB Local files | ||
.dynamodb/ | ||
# TernJS port file | ||
.tern-port | ||
# Stores VSCode versions used for testing VSCode extensions | ||
.vscode-test | ||
# yarn v2 | ||
.yarn/cache | ||
.yarn/unplugged | ||
.yarn/build-state.yml | ||
.yarn/install-state.gz | ||
.pnp.* | ||
### Node Patch ### | ||
# Serverless Webpack directories | ||
.webpack/ | ||
# Optional stylelint cache | ||
.stylelintcache | ||
# SvelteKit build / generate output | ||
.svelte-kit | ||
|
||
### Vuejs ### | ||
# Recommended template: Node.gitignore | ||
node_modules/ | ||
dist/ | ||
npm-debug.log | ||
yarn-error.log | ||
|
||
### now ### | ||
.now | ||
.vercel | ||
|
||
|
||
# ignore commit message | ||
.gitcommit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
Version 2, December 2004 | ||
|
||
Copyright (C) 2021 Jason Hempstead <[email protected]> | ||
|
||
Everyone is permitted to copy and distribute verbatim or modified | ||
copies of this license document, and changing it is allowed as long | ||
as the name is changed. | ||
|
||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | ||
|
||
1. You just DO WHAT THE FUCK YOU WANT TO. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Vuejs Template | ||
|
||
```text | ||
Change domain in ./scripts/deploy.sh | ||
Modify ./public/api/profile.json | ||
Change name in ./package.json | ||
``` | ||
|
||
## Project setup | ||
|
||
```shell | ||
npm install | ||
``` | ||
|
||
### Compiles and hot-reloads for development | ||
|
||
```shell | ||
npm run serve | ||
``` | ||
|
||
### Compiles and minifies for production | ||
|
||
```shell | ||
npm run build | ||
``` | ||
|
||
### Lints and fixes files | ||
|
||
```shell | ||
npm run lint | ||
``` | ||
|
||
### Customize configuration | ||
|
||
See [Configuration Reference](https://cli.vuejs.org/config/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
presets: [ | ||
'@vue/cli-plugin-babel/preset', | ||
], | ||
}; |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
malaks-us.github.io/samantha |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"name": "Samantha Malak", | ||
"email": [""], | ||
"tagLine": "", | ||
"bio": ["", "Currently living in Savannah, Georgia.", "", "\r"] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!DOCTYPE html> | ||
<html lang=""> | ||
<head> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="/" /> | ||
<meta property="og:title" content="malaks-us.github.io/samantha" /> | ||
<meta property="og:description" content="" /> | ||
<meta property="og:image" content="" /> | ||
<meta property="twitter:card" content="summary_large_image" /> | ||
<meta property="twitter:url" content="//malaks-us.github.io/samantha" /> | ||
<meta property="twitter:title" content="malaks-us.github.io/samantha" /> | ||
<meta property="twitter:description" content="" /> | ||
<meta property="twitter:image" content="" /> | ||
<meta name="title" content="malaks-us.github.io/samantha" /> | ||
<meta name="description" content="" /> | ||
<meta name="keywords" content="vue,javascript" /> | ||
<meta name="robots" content="index, follow" /> | ||
<meta name="language" content="English" /> | ||
<meta name="revisit-after" content="1 days" /> | ||
<meta name="author" content="CasjaysDev" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<link rel="icon" href="./favicon.ico" /> | ||
<link href="./css/app.fcd15f42.css" rel="preload" as="style" /> | ||
<link href="./css/chunk-vendors.4ce9fa89.css" rel="preload" as="style" /> | ||
<link href="./js/app.6d41751d.js" rel="preload" as="script" /> | ||
<link href="./js/chunk-vendors.628a3032.js" rel="preload" as="script" /> | ||
<link href="./css/chunk-vendors.4ce9fa89.css" rel="stylesheet" /> | ||
<link href="./css/app.fcd15f42.css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<noscript | ||
><strong | ||
>We're sorry but malaks-us.github.io/samantha doesn't work properly | ||
without JavaScript enabled. Please enable it to continue.</strong | ||
></noscript | ||
> | ||
<div id="app" class="container"></div> | ||
<script src="./js/chunk-vendors.628a3032.js"></script> | ||
<script src="./js/app.6d41751d.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.