Giter Site home page Giter Site logo

angular-components's Introduction

Live demo for a contacts manager tool.

Here's the app Create an user or login to get started.

This repo is the solution for the Ultimate Angular 1.x Pro course

Setup and install the project

Follow the steps below for setting everything up (if you have some of these already, skip to the next step where appropriate):

  1. Download and install Node.js here
  2. Install Firebase CLI on the command-line with npm install -g firebase-tools
  3. Install Gulp CLI on the command-line with npm install -g gulp

That's about it for tooling you'll need to run the project, let's move onto the project install.

Project installation and server

You'll need to cd into the directory that you cloned the repo into and run some quick tasks:

cd <your-app-folder>
npm install

This will then setup all the development and production dependencies we need.

Now simply run this to boot up the server:

npm start

Tasks

A quick reminder of all tasks available:

Running the local server

npm start

Running the tests

npm test

Deploying to Firebase

You'll need to ensure you're logged into Firebase first (if you are prompted, otherwise skip to next step):

firebase login

To deploy:

npm run deploy

This will then use the gulpfile.babel.js tasks to build the project and deploy it all fully minified to your Firebase account. You'll then be shown the full URL of your project in the terminal for viewing your live app!

Firebase rules

You can copy and paste this into your database.rules.json file generated by Firebase:

{
  "rules": {
    ".read": true,
    "contacts": {
      "$uid": {
        ".read": "$uid === auth.uid",
        ".write": "$uid === auth.uid"
      }
    }
  }
}

Resources

There are several resources used inside this project, of which you can read further about to dive deeper or understand in more detail what they are:

angular-components's People

Contributors

adhvalle avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.