Skip to content

risicle/digitalmarketplace-supplier-frontend

 
 

Repository files navigation

Digital Marketplace supplier frontend

Build Status Coverage Status Requirements Status

Frontend supplier application for the digital marketplace.

Quickstart

Install Virtualenv

sudo easy_install virtualenv

Install dependencies, build assets and run the app

make run_all

Full setup

Install Virtualenv

sudo easy_install virtualenv

Create a virtual environment

virtualenv ./venv

Activate the virtual environment

source ./venv/bin/activate

Upgrade dependencies

Install new Python dependencies with pip

make requirements_for_test

Front-end

Front-end code (both development and production) is compiled using Node and Gulp.

Requirements

You need Node (minimum version of 0.10.0, maximum version 0.12.x) which will also get you NPM, Node's package management tool.

To check the version you're running, type:

node --version

Installation

To install the required Node modules, type:

npm install

Frontend tasks

NPM is used for all frontend build tasks. The commands available are:

  • npm run frontend-build:development (compile the frontend files for development)
  • npm run frontend-build:production (compile the frontend files for production)
  • npm run frontend-build:watch (watch all frontend files & rebuild when anything changes) FAILED
  • npm run frontend-install (install all non-NPM dependancies)

Note: npm run frontend-install is run automatically as a post-install task when you run npm install.

Run the tests

To run the whole testsuite:

make test

To test individual parts of the test stack use the test_pep8, test_python or test_javascript targets.

eg.

make test_javascript

Run the development server

To run the Supplier Frontend App for local development use the run_all target. This will install requirements, build assets and run the app.

make run_all

To just run the application use the run_app target.

The supplier frontend runs on port 5003. Use the app at http://127.0.0.1:5003/suppliers

Using FeatureFlags

To use feature flags, check out the documentation in (the README of) digitalmarketplace-utils.

Configuring boto

boto provides a Python interface to Amazon Web Services; it's what we're using to download from and upload to our s3 buckets.

If you don't configure your AWS credentials correctly on your local machine, you'll probably run into a nasty-looking boto.exception.NoAuthHandlerFound page at some point.

The short version is that you should create an ~/.aws/credentials file formatted like so:

[default]
aws_access_key_id = ...
aws_secret_access_key = ...

AWS access keys can be found/configured in the Identity and Access Management (IAM) section of the digitalmarketplace-development AWS console.

Troubleshooting

If you're experiencing problems connecting, make sure to unset any env variables used by boto (e.g. AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SECURITY_TOKEN and AWS_PROFILE) as they may be overriding the values in your credentials file.

Running on Heroku

About

Frontend supplier application for the digital marketplace.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 69.8%
  • HTML 23.2%
  • JavaScript 4.9%
  • CSS 1.6%
  • Other 0.5%