Skip to content

Commit

Permalink
Merge branch 'release/2.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
JhonatanMedeiros committed Apr 14, 2020
2 parents df5e701 + bc3f383 commit 36fadf8
Show file tree
Hide file tree
Showing 19 changed files with 11,665 additions and 8,316 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 Jhonatan Hardt de Medeiros

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
54 changes: 39 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,53 @@
# MovieCountdown
# Ng Movie Countdown

[![Greenkeeper badge](https://badges.greenkeeper.io/JhonatanMedeiros/ng-movie-countdown.svg)](https://greenkeeper.io/)
Ng Movie Countdown is a web application to list movies and tv shows.

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 6.0.1.

## Development server
## 🖥 Demo
An example of application can be found [here](https://jhonatanmedeiros.github.io/ng-movie-countdown/).

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.
## ⌨️ Development

## Code scaffolding
### Clone Code

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`.
```bash
git clone [email protected]:JhonatanMedeiros/ng-movie-countdown.git
```

## Build
### Install Dependencies

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
```bash
npm install
```
> If you like [Yarn](https://yarnpkg.com/), you can also use `yarn` to install dependencies.
## Running unit tests

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

## Running end-to-end tests
```bash
npm run start
```
Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).

## Further help
### Build Release

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
```bash
npm run build:prod
```

After building, the application will be found in the `dist` directory.

## 🛠 Technology Stack

- [Angular 9x](https://angular.io/)
- [Bootstrap 4](https://getbootstrap.com/)


# 🤝 Contribute [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)

If you are interested in participating in joint development, PR and Forks are welcome!

## 📜 License

[MIT](https://github.com/JhonatanMedeiros/ng-movie-countdown/blob/master/LICENSE) Copyright (c) 2020 - Jhonatan Hardt de Medeiros
23 changes: 15 additions & 8 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,33 @@
"prefix": "mc",
"schematics": {
"@schematics/angular:component": {
"styleext": "scss",
"spec": false
"style": "scss",
"skipTests": true
},
"@schematics/angular:class": {
"spec": false
"skipTests": true
},
"@schematics/angular:directive": {
"spec": false
"skipTests": true
},
"@schematics/angular:guard": {
"spec": false
"skipTests": true
},
"@schematics/angular:module": {
"spec": false
"skipTests": true
},
"@schematics/angular:pipe": {
"spec": false
"skipTests": true
},
"@schematics/angular:service": {
"spec": false
"skipTests": true
}
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"aot": true,
"outputPath": "dist/movie-countdown",
"index": "src/index.html",
"main": "src/main.ts",
Expand All @@ -57,6 +58,12 @@
},
"configurations": {
"production": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
Expand Down
Loading

0 comments on commit 36fadf8

Please sign in to comment.