Skip to content

oaeproject/3akai-ux

This branch is 1 commit ahead of master.

Folders and files

NameName
Last commit message
Last commit date
Oct 12, 2021
Sep 15, 2015
Oct 1, 2014
Aug 10, 2015
Mar 10, 2014
Dec 15, 2021
Apr 24, 2020
Oct 12, 2021
May 24, 2017
Dec 11, 2017
Apr 1, 2019
Aug 31, 2015
Jul 26, 2019
Jan 2, 2018
Jul 26, 2019
Jun 13, 2013
Jul 26, 2019
Nov 13, 2019
Jul 26, 2019
Nov 3, 2022
Nov 3, 2022

Repository files navigation

Open Academic Environment (OAE Project)

3akai-ux is the front-end for the Open Academic Environment project.

Build status

Build Status

Installing OAE

Documentation on how to install and configure OAE can be found in the back-end repository.

HTTPS

In order to run the the OAE project on HTTPS we recommend following this tutorial. In a nutshell:

# create the certificate
sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout <SOME_PATH>/nginx-selfsigned.key -out <SOME_PATH>/nginx-selfsigned.crt

Then create a self-signed.conf file next to nginx.conf, uncomment both lines and replace <%= nginxConf.NGINX_SSL_HOME %> with the path you picked above (SOME_PATH):

ssl_certificate     <%= nginxConf.NGINX_SSL_HOME %>;/nginx-selfsigned.crt;
ssl_certificate_key <%= nginxConf.NGINX_SSL_HOME %>;/nginx-selfsigned.key;

Finally, uncomment the following lines in nginx.conf:

# listen   443 ssl default_server;
# include self-signed.conf;

Reload nginx and HTTPS should work now.

Offline Development

By default 3akai-ux uses the Open Sans font family available from Google's Web Font CDN. When developing locally without a live internet connection, that CDN will be inaccessible. To ensure maximum visual fidelity, those fonts can be installed as system fonts on the local machine. The entire collection can be downloaded from Google.

Widget development

Documentation (WIP) on how to create custom OAE widgets can be found on the Widget Wiki

Install dependencies

lerna and yarn are required to download 3akai-ux dependencies. To do so, run this command in your 3akai-ux directory: lerna bootstrap

Note that Hilary and its dependencies should be installed and running on your system before the tests can be run successfully.

Get in touch

The project website can be found at http://www.oaeproject.org. The project blog will be updated with the latest project news from time to time.

The mailing list used for Apereo OAE is oae@apereo.org. You can subscribe to the mailing list at https://groups.google.com/a/apereo.org/d/forum/oae.

Bugs and other issues can be reported in our issue tracker.

Special thanks to

  • BrowserStack for graciously supporting cross-browser testing.
  • Crowdin for providing our internationalisation platform.