This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
FoodLoop-Web/README.md

97 lines
3.3 KiB
Markdown
Raw Permalink Normal View History

2020-10-17 13:39:57 +00:00
# LocalSpend - Web Application
2020-10-17 13:39:57 +00:00
This repository contains the Web application for the LocalSpend system.
## Current Status
2017-09-14 10:07:00 +00:00
| Branch | Status |
2017-09-14 10:06:14 +00:00
| --- | --- |
2020-10-18 13:46:21 +00:00
| `master` | [![Build Status](https://travis-ci.org/Pear-Trading/FoodLoop-Web.svg?branch=master)](https://travis-ci.org/Pear-Trading/FoodLoop-Web) |
| `development` | [![Build Status](https://travis-ci.org/Pear-Trading/FoodLoop-Web.svg?branch=development)](https://travis-ci.org/Pear-Trading/FoodLoop-Web) |
2017-09-14 10:06:14 +00:00
2020-10-18 13:45:03 +00:00
## Contents
1. [Getting Started](#getting-started)
1. [Environments](#environments)
1. [Testing](#testing)
1. [Troubleshooting](#troubleshooting)
1. [Licences](#licenses)
## Getting Started
2020-10-17 13:39:57 +00:00
To get started with development, you will need an up-to-date version of
Node.js, git, and access to either the backend dev. server or a local
copy of it from the [LocalSpend Server][LocalLoop-Server] repo.
For your local Node.js, we recommend using:
- [n][tj/n] for \*nix and Mac; and
- [nodist][marcelklehr/nodist] for Windows.
2020-10-17 13:39:57 +00:00
We reccomend Node.js version 8.0.0+ and npm version 5.3.0+.
2020-10-17 13:39:57 +00:00
To get this repository set up:
2020-10-17 13:39:57 +00:00
1. Clone it
2020-10-18 13:45:03 +00:00
2. Install the dependencies:
2020-10-17 13:39:57 +00:00
- `npm install -g @angular/cli`
- `npm install`
2020-10-18 13:45:03 +00:00
3. Start the application:
2020-10-17 13:39:57 +00:00
- `npm start`
2020-10-18 13:48:43 +00:00
- The app. will automatically reload after source file changes
[LocalLoop-Server]:https://github.com/Pear-Trading/Foodloop-Server
[tj/n]:https://github.com/tj/n
[marcelklehr/nodist]:https://github.com/marcelklehr/nodist
2017-08-15 10:34:05 +00:00
## Environments
2020-10-17 13:39:57 +00:00
The app defaults to using the development server. For other options, see
`src/environments/environments.ts`.
2017-08-15 10:34:05 +00:00
2020-10-18 13:48:43 +00:00
## Build
Run `ng build` to build the project; the resulting files will be stored in the `dist/` directory. Use the `-prod` flag for a production build.
## Testing
2020-10-17 13:39:57 +00:00
There are two types of test in this codebase:
- unit tests (using Karma); and
- E2E tests (using Protractor).
### Karma Unit Tests
To run these, you just need to run `npm run test` - this should work without any further configuration. These run the `*.spec.ts` files next to the normal source files, and are for basic tests for each function on their own.
These tests are a long-running process, and will automatically run on file changes. Just run the command above, and then check back to the browser window that appears to see any errors as you work!
### Protractor E2E Tests
2020-10-17 13:39:57 +00:00
To run these, you will need to run the following command:
- `webdriver-manager update`
2020-10-17 13:39:57 +00:00
This will download the correct webdriver for you (we use chromedriver), and
any other dependencies it needs.
After that, you can run the tests with `npm run e2e`.
Note these run once, and will need to be re-run every time you want to run an
e2e test.
2020-10-17 13:39:57 +00:00
These tests are best run regularly, and should show if any issues have emerged
in other parts of the application that you are not aware of, or if some part
of the flow through the app has changed significantly.
2020-10-17 13:39:57 +00:00
## Troubleshooting
### Error: EACCES: permission denied, access '/usr/local/lib' when installing dependencies
Change npm's default directory by following [these steps](https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally#manually-change-npms-default-directory).
## Licences
### CoreUI
The interface itself is based off of [CoreUI][core-ui] which is MIT Licenced.
For information, see `LICENCE.MIT` included in this repo.
[core-ui]: http://coreui.io