Git Product home page Git Product logo

bellapps's People

Contributors

empeje avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

bellapps's Issues

server problem

I used server.js as it in vagrantfile, and the index page misses components.
screen shot 2018-02-09 at 12 10 10 am
The console is
screen shot 2018-02-09 at 12 38 48 am

Here is my server.js

#!/usr/bin/env node

var express = require('express')
var PortJack = express()
var path = require("path");

PortJack.get(/^(.+)$/, function(req, res) {
    var options = {
        "127.0.0.1": "http://127.0.0.1:2200/apps/_design/bell/MyApp/index.html",
        "localhost": "http://localhost:2200/apps/_design/bell/MyApp/index.html"
    }

    if (options.hasOwnProperty(req.hostname)) {
        res.setHeader('Location', options[req.hostname])
    } else {
        res.setHeader('Location', 'http://ole.org')
    }

    res.statusCode = 302
    res.end()
})

PortJack.listen(80)

And dockerfile is

FROM node:6.11-alpine

LABEL MAINTAINER Yunlu Zhou <[email protected]>

ENV version '0.13.21'

RUN mkdir -p /app/server/src

RUN apk add --update openssl && npm install express && \
    wget -O BeLL-Apps-${version}.tar.gz \
    https://github.com/open-learning-exchange/BeLL-Apps/archive/${version}.tar.gz && \
    tar xvf BeLL-Apps-${version}.tar.gz && \
    mv BeLL-Apps-${version}/* /app/server/src/ && \
    rm /app/server/src/package.json

WORKDIR /app/server/src

COPY server.js ./
COPY package.json ./

RUN npm install

EXPOSE 80

CMD ["npm","start"]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.