Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

fostertheweb/angularjs-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AngularJS Starter

Starting point for a new AngularJS 1.x application using angularjs-scripts

How to get started

  1. Clone this repository
  2. Change the name field within package.json
  3. Update the git remote url:
git remote origin set-url <url>
  1. Run npm install

Style Guide

AngularJS Starter includes ESLint and it follows the Todd Motto AngularJS Styleguide

If you need to learn ES2015/ES6 JavaScript syntax, reference the resources below:

Available Commands

Start local development server:

npm run serve

Build assets for deployment:

npm run build

Run unit testing framework (Karma & Jasmine):

npm run test

View all available commands:

npm run

Environment Variables & .env

Any variables defined in .env within the project's root directory will be read by webpack and converted to their corresponding value within the compiled bundle. This will allow you to specify any environment specific configuration, such as, an API URL.