Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

bcgov/namer

Repository files navigation

Namer

License Apache 2.0

img The project is no longer being used and/or supported.

Rapid Name Search

Dependencies

  • npm
  • python 3.6

Installation

Docker

  1. docker build . -t namer
  2. docker run --rm -it -p 5000:5000 namer
  3. Visit the URL mentioned after "Serving corporate names on "

Manual

For Namer to work, both the front-end and back-end must be started.

NPM (Front End)

  1. cd namer/static/js/app
  2. npm install
  3. Run the following depending on your environment:
    • Deployment: npm run build
    • Development: npm start

Python (Back End)

  1. Change to root repository folder (cd ../../../..)
  2. pip install -r requirements.txt
  3. python namer/wsgi.py
  4. Visit the URL mentioned after "Serving corporate names on "

Tests

To Be Determined