https://github.com/jonanv/photosfirebase-angularjs
Upload photos with firebase's database and with front angular js
https://github.com/jonanv/photosfirebase-angularjs
angular angularjs bootstrap css css3 firebase firestorage font-awesome html html5 javascript typescript
Last synced: about 2 months ago
JSON representation
Upload photos with firebase's database and with front angular js
- Host: GitHub
- URL: https://github.com/jonanv/photosfirebase-angularjs
- Owner: jonanv
- Created: 2021-03-27T17:11:23.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-08T00:00:26.000Z (about 5 years ago)
- Last Synced: 2025-02-27T07:16:15.862Z (over 1 year ago)
- Topics: angular, angularjs, bootstrap, css, css3, firebase, firestorage, font-awesome, html, html5, javascript, typescript
- Language: TypeScript
- Homepage:
- Size: 452 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![NPM Version][npm-badge]][npm-url]
[![Node JS][node-badge]][node-url]
[![Angular JS][angular-badge]][angular-url]
[![License][license-badge]][license-url]
# Site


# Install dependences
in ```photosfirebase-angularjs/```
```bash
npm install
```
or
```bash
yarn install
```
***
# PhotosfirebaseAngularjs
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 11.2.4.
## Development server
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.
## Code scaffolding
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. Use the `--prod` flag for a production build.
## 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 [Protractor](http://www.protractortest.org/).
## 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.
***
# Create component without .spec and .css (--skip-tests -is)
```javascript
ng generate component components/photos --skip-tests -is
```
or
```javascript
ng g c components/photos --skip-tests -is
```
# Create service without file .spec (--skip-tests)
```javascript
ng generate service services/loadImages --skip-tests
```
or
```javascript
ng g s services/loadImages --skip-tests
```
# Create directive without file .spec (--skip-tests)
```javascript
ng generate directive directives/ngDropFiles --skip-tests
```
or
```javascript
ng g d directives/ngDropFiles --skip-tests
```
# Create interface (add at file name '.interface.ts')
```javascript
ng generate interface interfaces/item
```
or
```javascript
ng g i interfaces/item
```
# Server local
install global ```sudo npm i -g http-server```
deploy in ```/photosfirebase-angularjs/dist/photosfirebase-angularjs/```
```javascript
http-server
```
or
```javascript
http-server -o
```
[npm-badge]: https://img.shields.io/badge/npm-v7.6.3-brightgreen
[npm-url]: https://www.npmjs.com
[node-badge]: https://img.shields.io/badge/nodejs-v14.16.0-brightgreen
[node-url]: https://nodejs.org/download/release/v12.16.1/
[angular-badge]: https://img.shields.io/badge/angular--CLI-v11.2.4-brightgreen
[angular-url]: https://angular.io/cli/
[license-badge]: https://img.shields.io/badge/license-MIT-green.svg
[license-url]: https://opensource.org/licenses/MIT