-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
61 changed files
with
14,978 additions
and
12,420 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
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 |
---|---|---|
@@ -1,27 +1,45 @@ | ||
# CoffeeWarehouse | ||
[<img src="./src/assets/logo-kendo.png" width="225" />](https://www.telerik.com/kendo-angular-ui/) [![Angular Logo](./src/assets/logo-angular.png)](https://angular.io/) | ||
|
||
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.0.3. | ||
# Using Kendo UI for Angular | ||
|
||
## Development server | ||
This Kendo UI for Angular sample project demonstrates how to use [Kendo UI for Angular components](https://www.telerik.com/kendo-angular-ui/components) within a coffee warehouse prototype application and visualize data. Currently, [the example is deployed on GitHub pages](https://telerik.github.io/kendo-angular/coffee-warehouse). | ||
|
||
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. | ||
Used Kendo UI for Angular Components: | ||
- [Buttons](https://www.telerik.com/kendo-angular-ui/components/buttons/button/) | ||
- [Charts](https://www.telerik.com/kendo-angular-ui/components/charts/) | ||
- [DateInputs](https://www.telerik.com/kendo-angular-ui/components/dateinputs/) | ||
- [DropDonws](https://www.telerik.com/kendo-angular-ui/components/dropdowns/) | ||
- [Editor](https://www.telerik.com/kendo-angular-ui/components/editor/) | ||
- [Grid](https://www.telerik.com/kendo-angular-ui/components/grid/) | ||
- [Inputs](https://www.telerik.com/kendo-angular-ui/components/inputs/) | ||
- [Layout](https://www.telerik.com/kendo-angular-ui/components/layout/) | ||
- [Notification](https://www.telerik.com/kendo-angular-ui/components/notification/) | ||
- [Scheduler](https://www.telerik.com/kendo-angular-ui/components/scheduler/) | ||
- [Uploads](https://www.telerik.com/kendo-angular-ui/components/uploads/) | ||
|
||
## Code scaffolding | ||
## In This Article | ||
|
||
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`. | ||
* [Setting Up the Project](#setting-up-the-project) | ||
* [Getting Started](#getting-started) | ||
* [Building for Development](building-for-development) | ||
* [Serve in Production](serve-in-production) | ||
|
||
## Build | ||
## Setting Up the Project | ||
|
||
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. | ||
The sample project runs with the [currently supported Angular version](https://www.telerik.com/kendo-angular-ui/components/installation/requirements/#toc-angular). | ||
|
||
## Running unit tests | ||
## Getting Started | ||
|
||
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). | ||
1. Clone the repository of the sample application locally by running `git clone https://github.com/telerik/kendo-angular.git`. | ||
1. Navigate to the project folder by running `cd examples-standalone/coffee-warehouse`. | ||
1. Install dependencies with NPM by running `npm install`. | ||
|
||
## Running end-to-end tests | ||
## Building for Development | ||
|
||
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. | ||
To run the project: | ||
1. Execute the `ng serve` command in the terminal window for a dev server. | ||
1. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. | ||
|
||
## Further help | ||
## Serve in Production | ||
|
||
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. | ||
Run `npm run serve-prod` to run the project in production mode. |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -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 |
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,7 @@ | ||
{ | ||
"trailingComma": "none", | ||
"printWidth": 140, | ||
"singleQuote": true, | ||
"tabWidth": 4, | ||
"quoteProps": "consistent" | ||
} |
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
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
Oops, something went wrong.