forked from External/greenlight
update readme and env
This commit is contained in:
parent
15760ebf0b
commit
bcd012bef5
|
@ -4,15 +4,13 @@ FROM ruby:2.3.1
|
|||
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs
|
||||
|
||||
ENV RAILS_ENV=production \
|
||||
APP_HOME=/usr/src/app \
|
||||
BIGBLUEBUTTON_ENDPOINT=http://test-install.blindsidenetworks.com/bigbluebutton/ \
|
||||
BIGBLUEBUTTON_SECRET=8cd8ef52e8e101574e400365b55e11a6
|
||||
APP_HOME=/usr/src/app
|
||||
|
||||
|
||||
RUN mkdir $APP_HOME
|
||||
WORKDIR $APP_HOME
|
||||
|
||||
# Add the greenlight app
|
||||
# Add the greenlight app
|
||||
ADD . $APP_HOME
|
||||
|
||||
# Install app dependencies
|
||||
|
@ -20,4 +18,3 @@ RUN bundle install --without development test doc --deployment --clean
|
|||
RUN bundle exec rake assets:precompile --trace
|
||||
|
||||
CMD ["scripts/default_start.sh"]
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ Greenlight is a simple front-end application for [BigBlueButton](http://bigblueb
|
|||
## Usage
|
||||
|
||||
Install [docker](https://docs.docker.com/engine/getstarted/step_one/)
|
||||
Create an environment variables file, here is a [template with instructions](https://raw.githubusercontent.com/zach-chai/greenlight/new_prod/env)
|
||||
Create an environment variables file, here is a [template with instructions](https://raw.githubusercontent.com/bigbluebutton/greenlight/master/env)
|
||||
Start the server in docker
|
||||
|
||||
docker run -d -p 3000:80 -v ${pwd}/db/production --env-file env bigbluebutton/greenlight
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
RAILS_ENV=development
|
||||
|
||||
# BigBlueButton
|
||||
BIGBLUEBUTTON_ENDPOINT=http://test-install.blindsidenetworks.com/bigbluebutton/
|
||||
BIGBLUEBUTTON_SECRET=8cd8ef52e8e101574e400365b55e11a6
|
||||
BIGBLUEBUTTON_ENDPOINT=
|
||||
BIGBLUEBUTTON_SECRET=
|
||||
|
||||
# If "true", GreenLight will register a webhook callback for each meeting
|
||||
# created. This callback is called for all events that happen in the meeting,
|
||||
|
|
Loading…
Reference in New Issue