Skip to content

Commit b5e06b5

Browse files
committed
initial
0 parents  commit b5e06b5

1,232 files changed

Lines changed: 190831 additions & 0 deletions

File tree

Some content is hidden

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

.browserslistrc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2+
# For additional information regarding the format and rule options, please see:
3+
# https://github.com/browserslist/browserslist#queries
4+
5+
# For the full list of supported browsers by the Angular framework, please see:
6+
# https://angular.io/guide/browser-support
7+
8+
# You can see what browsers were selected by your queries by running:
9+
# npx browserslist
10+
11+
last 1 Chrome version
12+
last 1 Firefox version
13+
last 2 Edge major versions
14+
last 2 Safari major versions
15+
last 2 iOS major versions
16+
Firefox ESR
17+
not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line.

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 4
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
14+
[*.md]
15+
max_line_length = off
16+
trim_trailing_whitespace = false

.eslintrc.json

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
{
2+
"root": true,
3+
"env": {
4+
"es6": true
5+
},
6+
"parserOptions": {
7+
"ecmaVersion": 2018
8+
},
9+
"ignorePatterns": [
10+
"projects/**/*"
11+
],
12+
"overrides": [
13+
{
14+
"files": [
15+
"*.ts"
16+
],
17+
"parserOptions": {
18+
"project": [
19+
"tsconfig.json"
20+
],
21+
"createDefaultProgram": true
22+
},
23+
"extends": [
24+
"plugin:@angular-eslint/ng-cli-compat",
25+
"plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
26+
"plugin:@angular-eslint/template/process-inline-templates"
27+
],
28+
"rules": {
29+
"@angular-eslint/component-selector": [
30+
"error",
31+
{
32+
"type": "element",
33+
"prefix": "",
34+
"style": "kebab-case"
35+
}
36+
],
37+
"@angular-eslint/directive-selector": [
38+
"error",
39+
{
40+
"type": "attribute",
41+
"prefix": "",
42+
"style": "camelCase"
43+
}
44+
],
45+
"@typescript-eslint/dot-notation": "off",
46+
"@typescript-eslint/explicit-function-return-type": "error",
47+
"@typescript-eslint/explicit-member-accessibility": [
48+
"off",
49+
{
50+
"accessibility": "explicit"
51+
}
52+
],
53+
"@typescript-eslint/no-inferrable-types": "off",
54+
"arrow-parens": [
55+
"error",
56+
"as-needed",
57+
{
58+
"requireForBlockBody": true
59+
}
60+
],
61+
"brace-style": [
62+
"off",
63+
"off"
64+
],
65+
"import/order": "off",
66+
"max-len": [
67+
"error",
68+
{
69+
"ignorePattern": "^import |^export | implements",
70+
"code": 180
71+
}
72+
],
73+
"no-underscore-dangle": "off",
74+
"object-shorthand": "off",
75+
"quote-props": [
76+
"error",
77+
"consistent"
78+
],
79+
"quotes": [
80+
"error",
81+
"single"
82+
]
83+
}
84+
},
85+
{
86+
"files": [
87+
"*.html"
88+
],
89+
"extends": [
90+
"plugin:@angular-eslint/template/recommended"
91+
],
92+
"rules": {}
93+
}
94+
]
95+
}

.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
# Only exists if Bazel was run
8+
/bazel-out
9+
10+
# dependencies
11+
/node_modules
12+
13+
# profiling files
14+
chrome-profiler-events*.json
15+
16+
# IDEs and editors
17+
/.idea
18+
.project
19+
.classpath
20+
.c9/
21+
*.launch
22+
.settings/
23+
*.sublime-workspace
24+
25+
# IDE - VSCode
26+
.vscode/*
27+
!.vscode/settings.json
28+
!.vscode/tasks.json
29+
!.vscode/launch.json
30+
!.vscode/extensions.json
31+
.history/*
32+
33+
# misc
34+
/.sass-cache
35+
/connect.lock
36+
/coverage
37+
/libpeerconnection.log
38+
npm-debug.log
39+
yarn-error.log
40+
testem.log
41+
/typings
42+
43+
# System Files
44+
.DS_Store
45+
Thumbs.db

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
12

CREDITS

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
// -----------------------------------------------------------------------------------------------------
2+
// @ 3rd party credits
3+
// -----------------------------------------------------------------------------------------------------
4+
5+
// Flags
6+
https://github.com/Yummygum/flagpack-core
7+
8+
// Icons
9+
Material - https://material.io/tools/icons
10+
Feather - https://feathericons.com/
11+
Heroicons - https://github.com/refactoringui/heroicons
12+
Iconsmind - https://iconsmind.com/
13+
14+
// Avatars
15+
https://uifaces.co
16+
17+
// 404, 500 & Maintenance
18+
https://undraw.co
19+
20+
// Mail app
21+
Photo by Riccardo Chiarini on Unsplash - https://unsplash.com/photos/2VDa8bnLM8c
22+
Photo by Johannes Plenio on Unsplash - https://unsplash.com/photos/RwHv7LgeC7s
23+
Photo by Jamie Davies on Unsplash - https://unsplash.com/photos/Hao52Fu9-F8
24+
Photo by Christian Joudrey on Unsplash - https://unsplash.com/photos/mWRR1xj95hg
25+
26+
// Profile page
27+
Photo by Alex Knight on Unsplash - https://unsplash.com/photos/DpPutJwgyW8
28+
29+
// Cards
30+
Photo by Kym Ellis on Unsplash - https://unsplash.com/photos/RPT3AjdXlZc
31+
Photo by Patrick Hendry on Unsplash - https://unsplash.com/photos/Qgxk3PQsMiI
32+
Photo by Hailey Kean on Unsplash - https://unsplash.com/photos/QxjsOlFNr_4
33+
Photo by Nathan Anderson on Unsplash - https://unsplash.com/photos/mG8ShlWrMDI
34+
Photo by Adrian Infernus on Unsplash - https://unsplash.com/photos/5apewqWk978
35+
Photo by freestocks.org on Unsplash - https://unsplash.com/photos/c73TZ2sIU38
36+
Photo by Tim Marshall on Unsplash - https://unsplash.com/photos/PKSCrmZdvwA
37+
Photo by Daniel Koponyas on Unsplash - https://unsplash.com/photos/rbiLY6ZwvXQ
38+
Photo by John Westrock on Unsplash - https://unsplash.com/photos/LCesauDseu8
39+
Photo by Gabriel Sollmann on Unsplash - https://unsplash.com/photos/kFWj9y-tJB4
40+
Photo by Kevin Wolf on Unsplash - https://unsplash.com/photos/BJyjgEdNTPs
41+
Photo by Luca Bravo on Unsplash - https://unsplash.com/photos/hFzIoD0F_i8
42+
Photo by Ian Baldwin on Unsplash - https://unsplash.com/photos/Dlj-SxxTlQ0
43+
Photo by Ben Kolde on Unsplash - https://unsplash.com/photos/KRTFIBOfcFw
44+
Photo by Chad Peltola on Unsplash - https://unsplash.com/photos/BTvQ2ET_iKc
45+
Photo by rocknwool on Unsplash - https://unsplash.com/photos/r56oO1V5oms
46+
Photo by Vita Vilcina on Unsplash - https://unsplash.com/photos/KtOid0FLjqU
47+
Photo by Jia Ye on Unsplash - https://unsplash.com/photos/y8ZnQqgohLk
48+
Photo by Parker Whitson on Unsplash - https://unsplash.com/photos/OlTYIqTjmVM
49+
Photo by Dorian Hurst on Unsplash - https://unsplash.com/photos/a9uWPQlIbYc
50+
Photo by Everaldo Coelho on Unsplash - https://unsplash.com/photos/KPaSCpklCZw
51+
Photo by eberhard grossgasteiger on Unsplash - https://unsplash.com/photos/fh2JefbNlII
52+
Photo by Orlova Maria on Unsplash - https://unsplash.com/photos/p8y4dWEMGMU
53+
Photo by Jake Blucker on Unsplash - https://unsplash.com/photos/tMzCrBkM99Y
54+
Photo by Jerry Zhang on Unsplash - https://unsplash.com/photos/oIBcow6n36s
55+
Photo by John Cobb on Unsplash - https://unsplash.com/photos/IE_sifhay7o
56+
Photo by Dan Gold on Unsplash - https://unsplash.com/photos/mDlhOIfGxNI
57+
Photo by Ana Toma on Unsplash - https://unsplash.com/photos/XsGwe6gYg0c
58+
Photo by Andrea on Unsplash - https://unsplash.com/photos/1AWY0N960Sk
59+
Photo by Aswin on Unsplash - https://unsplash.com/photos/_roUcFWstas
60+
Photo by Justin Kauffman on Unsplash - https://unsplash.com/photos/aWG_dqyhI0A
61+
Photo by Barna Bartis on Unsplash - https://unsplash.com/photos/VVoBQqWrvkc
62+
Photo by Kyle Hinkson on Unsplash - https://unsplash.com/photos/3439EnvnAGo
63+
Photo by Spencer Watson on Unsplash - https://unsplash.com/photos/5TBf16GnHKg
64+
Photo by adrian on Unsplash - https://unsplash.com/photos/1wrzvwoK8A4
65+
Photo by Christopher Rusev on Unsplash - https://unsplash.com/photos/7gKWgCRixf0
66+
Photo by Stephen Leonardi on Unsplash - https://unsplash.com/photos/MDmwQVgDHHM
67+
Photo by Dwinanda Nurhanif Mujito on Unsplash - https://unsplash.com/photos/pKT5Mg16w_w
68+
Photo by Humphrey Muleba on Unsplash - https://unsplash.com/photos/Zuvf5mxT5fs
69+
Photo by adrian on Unsplash - https://unsplash.com/photos/PNRxLFPMyJY
70+
Photo by Dahee Son on Unsplash - https://unsplash.com/photos/tV06QVJXVxU
71+
Photo by Zachary Kyra-Derksen on Unsplash - https://unsplash.com/photos/vkqS7vLQUtg
72+
Photo by Rodrigo Soares on Unsplash - https://unsplash.com/photos/8BFWBUkSqQo

LICENSE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Envato Standard License
2+
3+
Copyright (c) Sercan Yemen <sercanyemen@gmail.com>
4+
5+
This project is protected by Envato's Standard License. For more information,
6+
check the official license page at [https://themeforest.net/licenses/standard](https://themeforest.net/licenses/standard)

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Fuse - Admin template and Starter project for Angular
2+
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli)
4+
5+
## Development server
6+
7+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
8+
9+
## Code scaffolding
10+
11+
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
12+
13+
## Build
14+
15+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
16+
17+
## Running unit tests
18+
19+
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
20+
21+
## Running end-to-end tests
22+
23+
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
24+
25+
## Further help
26+
27+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.

0 commit comments

Comments
 (0)