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

sks/predix-seed

Repository files navigation

PX + Vue + Typescript Seed

Build Status

A Vue Application written in typescript using Polymer/PX components

Scripts

Dependencies

yarn install && bower install

Checkout .travis.yml file for details

Building

yarn build

Hosting

On cloudfoundry Using staticfile-buildpack.

Currently hosted here

Checkout manifest.yml file has more details

cf push

Using Docker image

# Build the image
yarn dockerize

# Run the image already Hosted
docker run \
    -d \
    --name predix-seed \
    -p 8080:80 \
    --rm predixdev/predix-seed:latest

## Navigate to http://localhost:8080
## Stop the docker Container

docker stop predix-seed