A business web application platform that implements a modern user experience and many common base features that are expected by business consumers. Integrates with the Voyage API to provide multi-factor authentication/authorization, user profile, basic messaging, and more. Built using Javascript and the Google Angular framework.
Created and supported by Lighthouse Software @ https://LighthouseSoftware.com
# Clone repository.
$ git clone https://github.com/lssinc/voyage-app-angular.git
# Change directory to your app.
$ cd voyage-app-angular
# Install angular cli globally.
$ npm install -g @angular/cli
# Install development dependencies with npm.
$ npm install
# Start the server.
$ npm startThe app will open in your browser.
- User Login w/ Password Recovery
- User Account Management
- User Admin Console
- User Settings
- Alerts & Notifications
- Responsive UI for Desktop, Tablet, Mobile
- Lazy loaded modules and AOT support to ensure high performance.
- Integrates with the Voyage API for all data
What you need to run this app:
- Node and NPM
- Angular CLI (
npm install -g @angular/cli)
clonethis repositorycd voyage-app-angularto navigate to the root directory of the app.npm installto install npm dependencies.
After you have installed all dependencies you can now run the app with the npm start script
npm startWhich is just a shortcut to running the Angular CLI with the -o flag to automatically open a browser tab and display the app
ng serve -oThis will start a local server which will watch for file changes and reload for you. The port will be displayed to you as http://localhost:3000.
To connect the app against a local instance of the Voyage API for development and testing purposes, start the app with --env=devjava command.
You can also replace the api url and server url values of environment.ts with those from environment.devjava.ts.
While you can always run Angular CLI commands directly, our package.json scripts section has common Angular CLI build commands.
- build and serve files:
npm start - single run:
npm run build - qa build:
npm run build:qa - prod build: 'npm run build:prod'
- single run:
ng test