Skip to content

Commit

Permalink
πŸ¦ˆπŸ πŸœβ— Initial Commit β—πŸœπŸ¦ˆπŸ 
Browse files Browse the repository at this point in the history
  • Loading branch information
casjay committed Dec 11, 2024
0 parents commit a085eb9
Show file tree
Hide file tree
Showing 39 changed files with 39,109 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not dead
8 changes: 8 additions & 0 deletions .editorconfig
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
26 changes: 26 additions & 0 deletions .eslintrc.js
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 added .gitattributes
Empty file.
127 changes: 127 additions & 0 deletions .gitignore
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
13 changes: 13 additions & 0 deletions LICENSE.md
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.
35 changes: 35 additions & 0 deletions README.md
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/).
5 changes: 5 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset',
],
};
Empty file added docs/.nojekyll
Empty file.
1 change: 1 addition & 0 deletions docs/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
malaks-us.github.io/samantha
6 changes: 6 additions & 0 deletions docs/api/profile.json
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"]
}
1 change: 1 addition & 0 deletions docs/css/app.fcd15f42.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions docs/css/chunk-vendors.4ce9fa89.css

Large diffs are not rendered by default.

Binary file added docs/favicon.ico
Binary file not shown.
43 changes: 43 additions & 0 deletions docs/index.html
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>
Loading

0 comments on commit a085eb9

Please sign in to comment.