Below are instructions for hosting and building the site and a layout of how the code is organized.
CNX webview is designed to be run as a frontend for cnx-archive.
webview
directory, run ./script/bootstrap
in the command line../script/setup
to install all the package dependencies.
npm install
runs bower install
and grunt install
, both of which can also be run independentlybower install
downloads front-end dependenciesgrunt install
compiles the Aloha-Editor (which is downloaded by bower)By default, webview will use cnx-archive and cnx-authoring hosted on cnx.org.
From the root webview
directory, run ./script/setup
.
The dist
directory containing the built site will be added to the root webview
directory.
From the root webview
directory, run ./script/test
(which runs npm test
).
npm test failures are not as informative as they could be.
If coffeelint
fails, you can run it with grunt coffeelint
to get more information
From the root webview
directory, run ./script/update
, which executes the following commands:
npm update
bower update
grunt aloha --verbose
./script/start
(uses nginx.dev.conf
)./script/stop
to stop nginxsrc/scripts/settings.js
if necessary to, for example, include
the correct Google Analytics ID, and to point to wherever cnxarchive
is being hosted.For example, if the data you are working with is located on devb.cnx.org
, you can change src/scripts/settings.js
as follows:
cnxarchive: {
host: 'archive-devb.cnx.org',
port: 80
},
Ensure resources are being served with the correct MIME type, including fonts.
types {
image/svg+xml svg svgz;
font/truetype ttf;
font/opentype otf;
application/font-woff woff;
}
Configure your server to point at dist/index.html
(or src/index.html
for development)
dist/index.html
or src/index.html
root
in src/scripts/settings.js
scripts
, styles
, and images
routes should be rewritten to the correct pathsYou can, for example, point at the server hosting the cnxarchive
you want to work with. This will point all the resources to the proper server.
server {
listen 8000; # dev
listen [::]:8000; # dev ipv6
listen 8001; # production
listen [::]:8001; # production ipv6
server_name _;
# Support both production and dev
set $ROOT "src";
if ($server_port ~ "8001") {
set $ROOT "dist";
}
root /path/to/webview/$ROOT/;
index index.html;
try_files $uri @prerender;
# Proxy resources and exports to cnx.org
# since they are not part of the locally hosted package
location /resources/ {
proxy_pass http://cnx.org;
}
location /exports/ {
proxy_pass http://cnx.org;
}
# For development only
location ~ ^.*/bower_components/(.*)$ {
alias /path/to/webview/bower_components/$1;
}
location ~ ^.*/(data|scripts|styles|images|fonts)/(.*) {
try_files $uri /$1/$2;
}
# Prerender for SEO
location @prerender {
# Support page prerendering for web crawlers
set $prerender 0;
if ($http_user_agent ~* "baiduspider|twitterbot|facebookexternalhit|rogerbot|linkedinbot|embedly|quora link preview|showyoubot|outbrain|pinterest") {
set $prerender 1;
}
if ($args ~ "_escaped_fragment_") {
set $prerender 1;
}
if ($http_user_agent ~ "Prerender") {
set $prerender 0;
}
if ($uri ~ "\.(js|css|xml|less|png|jpg|jpeg|gif|pdf|doc|txt|ico|rss|zip|mp3|rar|exe|wmv|doc|avi|ppt|mpg|mpeg|tif|wav|mov|psd|ai|xls|mp4|m4a|swf|dat|dmg|iso|flv|m4v|torrent)") {
set $prerender 0;
}
if ($prerender = 1) {
rewrite .* /$scheme://$http_host$request_uri? break;
proxy_pass http://localhost:3000;
}
if ($prerender = 0) {
rewrite .* /index.html break;
}
}
}
Note: make sure to disable your browser's cache to view changes made to ./conf/nginx.dev.conf
. For example, in Chrome's console, under the network tab, check "Disable Cache".
bower_components/
3rd Party Libraries (added after install)node_modules/
Node Modules (added after install)dist/
Production version of the site (added after build)src/
Development version of the sitesrc/data/
Hardcoded datasrc/images/
Images used throughout the sitesrc/scripts/
Site scripts and 3rd party librariessrc/scripts/collections
Backbone Collectionssrc/scripts/helpers
Helpers for Handlebars, Backbone, and generic codesrc/scripts/models
Backbone Modelssrc/scripts/modules
Self-contained, reusable Modules used to construct pagessrc/scripts/pages
Backbone Views representing an entire page (or the entire viewport)src/scripts/config.js
Require.js configurationsrc/scripts/loader.coffee
App loader, responsible for setting up global listenerssrc/scripts/main.js
Initial script called by Requirejssrc/scripts/router.coffee
Backbone Routersrc/scripts/session.coffee
Session state singleton (Backbone Model)src/scripts/settings.js
Global application config settings (remains in place after build)src/styles/
App-specific LESS variables and mixinssrc/index.html
App's HTML Pagetest/
Unit testsFollow the instructions to install Docker.
Follow the instructions to install Docker Compose.
$ docker-compose up -d
The nginx and application configurations are automatically generated from environnment variables when using Docker. One can take a glance at the used environment variables in this file. Take special care when assigning these variables that FE_ARCHIVE_HOST
, OPENSTAX_HOST
, LEGACY_HOST
, and EXERCISE_HOST
must all be able to be resolved by the frontend client. ARCHIVE
on the other hand, must be able to be resolved by the webview Docker container. For example, if one has archive running in Docker Compose with webview then they could assign ARCHIVE
like so:
ARCHIVE=archive # the archive service is called 'archive'
ARCHIVE_PORT=6543 # the open port in the archive container - NOT the docker host
But could not assign FE_ARCHIVE_HOST
to the same values. FE_ARCHIVE_HOST
would need to be assigned to the host name and port exposed on the docker host, instead.
https://nodejs.org/dist/v6.9.1/
ln -sf <YOUR_FOLDER>/bin/node /usr/bin/node
ln -sf <YOUR_FOLDER>/bin/node /usr/bin/nodejs
node -v
https://yarnpkg.com/lang/en/docs/install/#debian-stable
sudo apt-get update
sudo apt-get install nginx
openssl req -x509 -out localhost.crt -keyout localhost.key \
-newkey rsa:2048 -nodes -sha256 \
-subj '/CN=localhost' -extensions EXT -config <( \
printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")
webview/conf
nginx-dev.conf
server {
listen 8000;
listen 443 ssl;
ssl_certificate localhost.crt;
ssl_certificate_key localhost.key;
root src;
sudo ./script/start
This software is subject to the provisions of the GNU Affero General Public License Version 3.0 (AGPL). See license.txt for details. Copyright (c) 2013 Rice University.