Skip to content

corbinSanders/ember-osf-web

 
 

Repository files navigation

ember-osf-web

master build master build status Coverage Status

develop build develop build status Coverage Status

A front end for osf.io.

Prerequisites

You will need the following things properly installed on your computer.

Installation

  • git clone https://github.com/CenterForOpenScience/ember-osf-web.git
  • cd ember-osf-web
  • yarn --frozen-lockfile

Running / Development

Mac OS File Descriptor Limits

Watchman states "Only applicable on OS X 10.6 and earlier". Though it's been observed this setting can remain incorrect on systems where the operation system was upgraded from a legacy version.

Putting the following into a file named /etc/sysctl.conf on OS X will cause these values to persist across reboots:

kern.maxfiles=10485760
kern.maxfilesperproc=1048576

Development

Configure the application for local development, add the following to your config/local.js:

module.exports = {
    // an ally audit can use 100% of your browsers cpu, so use it wisely
    A11Y_AUDIT: false,
    // toggle on/off the engine applications you will be working on
    COLLECTIONS_ENABLED: false,
    // sourcemaps are useful if you need to step through typescript code in the browser
    SOURCEMAPS_ENABLED: true,
};

To integrate with the legacy front end at localhost:5000, you have two options:

  • Enable the waffle flags for each page in your local OSF Admin
  • Add routes to your osf.io/website/settings/local.py:
    EXTERNAL_EMBER_APPS = {
        'ember_osf_web': {
            # ...
            'routes': [
                'handbook',
                'dashboard',
                # ...
            ],
        },
        # ...

Developer Handbook

To enable the developer handbook locally, add the following to your config/local.js:

module.exports = {
    HANDBOOK_ENABLED: true,
};

The handbook will be available at http://localhost:4200/handbook.

To enable (experimental) auto-generated docs in the handbook, you can also set HANDBOOK_DOC_GENERATION_ENABLED: true in your local config.

Enable handbook on your fork

  1. Generate a deploy key
  • ssh-keygen -t rsa -b 4096 -C <your@email.com>
  • Enter file in which to save the key (~/.ssh/id_rsa): ~/deploy_key
  • Press enter twice for no passphrase
  1. Add the public key in your GitHub repository settings
  • cat ~/deploy_key.pub | pbcopy
  • Go to https://github.com/<org>/<repo>/settings/keys/new
  • Title: Travis CI
  • Key: paste in the public key
  • ☑️ Allow write access
  1. Add the base64-encoded private key to Travis CI
  • cat ~/deploy_key | base64 | pbcopy
  • Go to https://travis-ci.org/<org>/<repo>/settings
  • Under Environment Variables, add
    • Name: DEPLOY_KEY
    • Value: paste in the private key
    • 'Leave Display Value in Build log' off
    • Click Add
  1. Delete the keypair
  • rm ~/deploy_key ~/deploy_key.pub

Code Generators

Make use of the many generators for code, try ember help generate for more details

Running Tests

  • ember test
  • ember test --server

Building

  • ember build (development)
  • ember build --environment production (production)

Further Reading / Useful Links

About

Ember front-end for the Open Science Framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 73.3%
  • Handlebars 18.6%
  • SCSS 5.4%
  • JavaScript 2.6%
  • HTML 0.1%
  • Dockerfile 0.0%