Skip to content

Commit e1e49c1

Browse files
author
Code Muffin
committed
Initial - DCP 2.0.0
1 parent 6aa9967 commit e1e49c1

File tree

278 files changed

+22364
-74
lines changed

Some content is hidden

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

278 files changed

+22364
-74
lines changed

.browserslistrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead

.eslintrc.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
'extends': [
7+
'plugin:vue/essential',
8+
'eslint:recommended'
9+
],
10+
parserOptions: {
11+
parser: 'babel-eslint'
12+
},
13+
rules: {
14+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
15+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
16+
}
17+
}

.gitignore

Lines changed: 19 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,23 @@
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-
10-
# Compiled Java class files
11-
*.class
12-
13-
# Compiled Python bytecode
14-
*.py[cod]
15-
16-
# Log files
17-
*.log
18-
19-
# Package files
20-
*.jar
21-
22-
# Maven
23-
target/
24-
dist/
25-
26-
# JetBrains IDE
27-
.idea/
28-
29-
# Unit test reports
30-
TEST*.xml
31-
32-
# Generated by MacOS
331
.DS_Store
2+
node_modules
3+
/dist
344

35-
# Generated by Windows
36-
Thumbs.db
375

38-
# Applications
39-
*.app
40-
*.exe
41-
*.war
6+
# local env files
7+
.env.local
8+
.env.*.local
429

43-
# Large media files
44-
*.mp4
45-
*.tiff
46-
*.avi
47-
*.flv
48-
*.mov
49-
*.wmv
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

README.md

Lines changed: 24 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
1-
# README #
2-
3-
This README would normally document whatever steps are necessary to get your application up and running.
4-
5-
### What is this repository for? ###
6-
7-
* Quick summary
8-
* Version
9-
* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
10-
11-
### How do I get set up? ###
12-
13-
* Summary of set up
14-
* Configuration
15-
* Dependencies
16-
* Database configuration
17-
* How to run tests
18-
* Deployment instructions
19-
20-
### Contribution guidelines ###
21-
22-
* Writing tests
23-
* Code review
24-
* Other guidelines
25-
26-
### Who do I talk to? ###
27-
28-
* Repo owner or admin
29-
* Other community or team contact
1+
# dcp-config
2+
3+
## Project setup
4+
```
5+
npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
npm run build
16+
```
17+
18+
### Lints and fixes files
19+
```
20+
npm run lint
21+
```
22+
23+
### Customize configuration
24+
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}

0 commit comments

Comments
 (0)