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

nordicmicroalgae/nordicmicroalgae-mobile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

Mobile application for Nordic Microalgae built with AngularJS, jQuery and Bootstrap.

Available at http://m.nordicmicroalgae.org/

Development

Node.js and Grunt (task runner for Node.js) are required for certain tasks, such as:

  • Generate an optimized and production ready version of the app
  • Run a local development server, quick and easy without any configuration
  • etc

Visit http://nodejs.org/ for more information on how to install Node.js on your system.

Use npm (the package manager for Node.js) to install the Grunt CLI globally:

npm install -g grunt-cli

Go to the project directory and install local dependencies:

cd mobileapp
npm install

To run a local development server, the server task may be used:

grunt server

In order to generate an optimized and production ready version of the app, run the default grunt task:

grunt

The generated version will end up in the 'dist' directory.