Skip to content

Commit

Permalink
Elgervb/issue111 (#113)
Browse files Browse the repository at this point in the history
* closes #111

* new project with Angular 15
Fixes #111

---------

Co-authored-by: Elger van Boxtel <[email protected]>
  • Loading branch information
elgervb and elgervb authored Mar 23, 2023
1 parent 0316cb0 commit d747805
Show file tree
Hide file tree
Showing 254 changed files with 12,142 additions and 18,969 deletions.
17 changes: 0 additions & 17 deletions .browserslistrc

This file was deleted.

54 changes: 0 additions & 54 deletions .eslintrc.json

This file was deleted.

23 changes: 9 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,47 +1,42 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
# Compiled output
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
# Node
/node_modules

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json
npm-debug.log
yarn-error.log

# IDEs and editors
/.idea
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
# Miscellaneous
/.angular/cache
/.sass-cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
# System files
.DS_Store
Thumbs.db
1 change: 0 additions & 1 deletion .husky/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

7 changes: 0 additions & 7 deletions .husky/pre-push

This file was deleted.

1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
"recommendations": ["angular.ng-template"]
}
21 changes: 10 additions & 11 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "ng serve",
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"sourceMaps": true,
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}",
"runtimeArgs": [
"--user-data-dir=${workspaceFolder}/.vscode/cache",
"--remote-debugging-port=9222",
"--disable-session-crashed-bubble"
]
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "ng test",
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: test",
"url": "http://localhost:9876/debug.html"
}
]
}
7 changes: 0 additions & 7 deletions .vscode/settings.json

This file was deleted.

42 changes: 42 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
},
{
"type": "npm",
"script": "test",
"isBackground": true,
"problemMatcher": {
"owner": "typescript",
"pattern": "$tsc",
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "(.*?)"
},
"endsPattern": {
"regexp": "bundle generation complete"
}
}
}
}
]
}
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

35 changes: 21 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
# Beez

[![Build Status](https://travis-ci.com/elgervb/beez.svg?branch=main)](https://travis-ci.com/elgervb/beez)
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.2.4.

## Development server

## Development
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The application will automatically reload if you change any of the source files.

- https://github.com/elgervb/beez
- https://angular.io/cli/generate
- https://material.angular.io/components/categories
- https://material.angular.io/guide/schematics
- https://v7.material.angular.io/guide/typography
- https://fonts.google.com/icons
- https://ngrx.io/guide/store
- https://firebase.google.com/
- https://github.com/angular/angularfire
- auth guards: https://github.com/angular/angularfire/blob/master/docs/auth/router-guards.md
## Code scaffolding

English terms:
- https://www.beehives.info/glossary-bee-keeper-terms/
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`.

## Build

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.

## Running unit tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

## Running end-to-end tests

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.

## Further help

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.
Loading

0 comments on commit d747805

Please sign in to comment.