Getting Started
Becoming a Contributor
To get started as developer or contributor to the Elentra Platform you are required to have:
An active GitHub.com account
An approved Elentra Contributor Agreement
A suitable developer workstation
You should also be setup with:
Access to our Slack Team at https://elentra.slack.com and the
#developers
channelAccess to our Jira tracker at https://elentra.atlassian.net
Subscription to our developer-l@elentra.org and community-l@elentra.org mailing lists
While this documentation is intended to get you up and running as quickly as possible, you may still run into unforeseen corners of the stack. If you have questions then please reach out to us on Slack or the Developer mailing list. We won't bite.
Register with GitHub
If you do not already have an account on GitHub.com, or you would like a separate work-specific account, then please visit https://github.com and sign up for a new account.
Regardless of whether you would like to use your existing account or create a new one, it is important that you know your correct GitHub.com username and that have you provided your full name within the Your Profile > Settings section on GitHub. Failure to do this may result in delays of approval.
You must have two-factor authentication enabled for your GitHub account in order to join the ElentraProject
GitHub organization.
Sign the Elentra Contributor Agreement
Before gaining access to our source code repositories you must review and sign an Elentra Contributor Agreement. This agreement provides fall-back legal protection for the Elentra Consortium relating to any potential contributions you may make.
Please sign the Elentra Contributor Agreement in Adobe Sign where you will be asked for your full name, the institution you belong to, your e-mail address, and your GitHub.com username. Once your contributor request has been approved you will receive an invite from GitHub.com to join the ElentraProject organization.
If we have not responded to your contributor request within 1 business day, or if there is an urgent request, please feel free to contact Graham Berry directly for follow-up.
Your Developer Workstation
While there is no required workstation configuration for Elentra Platform development, there are a number of technologies used by Elentra Consortium developers that dramatically increase productivity and reliability, and promote consistency. The vast majority of these applications are available for macOS, Windows 10+, and Linux workstations.
Docker
The elentra-developer
Docker environment is a lightweight, developer-friendly, virtualization layer that should be used to provide a local development environment that closely mimics your production Elentra environment.
While you could install and configure your own local version of Apache, MariaDB, and PHP, this Docker environment is intended to expedite the setup process for most developers and provide a consistent developer experience across macOS, Windows, and Linux workstations.
Highly Recommended Software Stack
Please note that you really only need to install one per category listed below.
Installing Elentra
Prerequisites
1. Install the software stack
Make sure that you have completely installed the Highly Recommended Software Stack listed above, otherwise a lot of this won't make sense.
macOS users can enjoy an expedited Highly Recommended Software Stack setup by running the following commands in Terminal:
2. Configure your hosts file
Warning: This step can be painful to explain to new developers, so please bear with us. On the plus side it will eventually go away thanks to a not-yet-approved RFC standard that has already been adopted by Google Chrome.
While Google Chrome will automatically route *.localhost
DNS requests to your local host, other supported browsers such Firefox, Edge, and potentially Safari may not.
You should add the following Elentra Platform hostnames to your hosts
file, and potentially other Branded Edition hostname's as well (e.g., medtech-1x-me.localhost
).
3. Create an SSH key and add it to GitHub
If you do not already have a 4096 bit SSH key on your workstation then you will need to generate one. Using either Terminal or Git Bash on your host desktop, run:
The defaults provided by ssh-keygen should be fine, including the default ~/.ssh/id_rsa
storage location and an empty passphrase (providing your workstation is properly secured).
Next, you must add your SSH public key to your GitHub profile in the SSH and GPG keys section. Using either Terminal or Git Bash on your host desktop, run:
If you run ssh git@github.com
from within Terminal or Git Bash and it fails to authenticate with GitHub, then you have a problem.
Please make sure your SSH Public Key (~/.ssh/id_rsa.pub
) has been added to GitHub's SSH and GPG keys section before proceeding.
Clone from GitHub
The Elentra (Admissions, ME, and CPD) source code is obtained via Git source control management from GitHub once your access request has been granted.
Are you running Windows? Before you clone our repositories you must disable Git's autocrlf feature for automatically converting line endings. If you don't do this, your container will not start successfully.
Run the following within Git Bash:
git config --global core.autocrlf false
Repository #1) Elentra Developer Docker Environment
Using either Terminal or Git Bash on your host desktop, clone the elentra-developer
repository into a directory within your home directory (e.g., ~/Documents
).
Repository #2) Elentra ME
Using either Terminal or Git Bash on your host desktop, clone the elentra-1x-me
repository from your Institutional Fork into the ~/Sites
directory, and add the Elentra Consortium as an additional Git remote.
Repository #3) Elentra API
Next, clone the elentra-1x-api
repository into the ~/Sites
directory:
Repository #4) Elentra JS
Next, clone the elentra-2x-js
repository into the ~/Sites
directory:
Start the Docker Environment
Start the Elentra Developer Docker environment by running the developer setup command within the elentra-developer
Docker directory:
That should be it. Installation of the initial container may take a little while, but when it's complete you can connect to the bash shell of your container by typing:
The following directories are automatically mapped for you in elentra-developer
:
Are you running Windows? Unfortunately, you're going to have an issue with that last one. To work around this Windows permissions issue you will need copy your SSH key into the container by executing the following commands within the container bash shell:
Not using Docker?
If you are not using our Docker environment make sure that:
Your development environment meets the System Requirements
You have created the databases on your host database server, and also created a user account with privileges to these new databases.
You have configured your Apache installation with the appropriate local virtual hosts.
Authenticate with Private Packagist
Authenticating your elentra-developer
Docker container, and possibly your host computer as well, is necessary in order to install the dependencies used by the Elentra Platform.
As of Elentra Admissions 0.9, Elentra ME 1.13, and Elentra CPD 1.1 our Composer dependencies are managed and installed through a commercial service called Private Packagist - https://packagist.com. This service mirrors our dependencies from their original location and provides a reliable, redundant, and consistent dependency source for our deployment processes.
Once you have obtained your Institutional Authorization Token, please run the following command (replacing dcdeef40...
with your actual token) within your Docker container:
Install the Composer Dependencies
Within your
elentra-developer
Docker container, ensure that you have thedevelop
Git branch checked out and that you are up to date:
2. Optionally, if you have cloned the elentra-1x-api
repository and want to use this development version instead of the production version, then create a new file named composer-api-dev.json
in your elentra-1x-me
root directory:
Add the following lines to this new composer-api-dev.json
file, if you have created one:
3. Install the Composer dependencies:
4. Optionally, to use the local elentra-1x-api
, use composer update just for that package and then reset changes to the composer.lock
file:
Install the NPM dependencies
Elentra 1.26 introduces a vite bundle containing JavaScript dependencies such as jQuery and Bootstrap, which uses NPM to ensure that these libraries stay up-to-date.
Run the following in the elentra-1x-me
directory, to compile the vite bundle (again in the docker shell):
Proceed to Browser
If all went according to plan you can now visit this local Elentra ME installation using Chrome, Firefox, Safari, or Edge to proceed with the web-based setup: http://elentra-1x-me.localhost
Deploying Elentra
Deployer provides a consistent and reliable methodology that lets you deploy and roll-back new releases to your servers from your command line or from a CI/CD server.
These instructions assume that you are running the Elentra Developer Docker Environment, and that you have a fully functional Branded Edition cloned to your ~/Sites/
directory.
Prerequisites
Elentra Developer Docker Environment
Deployment
Last updated