SunbirdED Portal
The Sunbird portal is the browser-based interface for the Sunbird application stack. It provides a web-app through which all functionality of Sunbird can be accessed.
Getting started
To get started with the Sunbird portal, please try out our cloud-based demo site at: https://staging.sunbirded.org
Table of contents
Prerequisites
System Requirements | |
Operating System | MAC OS X 10.0 and above/Linux Windows (not verified). Take it with your own expertise(no community support but open for contribution). |
RAM | > 6 Gb |
CPU | 2 cores, >2 GHz |
Software dependencies | |
---|---|
> 14.x.x (Install the latest release of LTS version) | |
> 11.x.x (Install the latest Angular CLI version) | |
Latest version of yarn: | |
Latest version of nodemon: |
Project Setup
Clone project
Note: Stable versions of the sunbird portal are available via tags for each release, and the master branch contains latest stable release. For latest stable release refer
Install required dependencies
Sunbird portal or web application
$ cd {PROJECT-FOLDER}/src/app/client
$ yarn install
Sunbird services stack or the backend API interface
$ cd {PROJECT-FOLDER}/src/app
$ yarn install
Configuring the Environment and Services Stack
Configure the following system environment variables in the terminal which you have opened
The initialization of these environmental variables can take place in a common place like in your .bashrc or .bash_profile
Edit the Application Configuration
Open
<PROJECT-FOLDER>/src/app/helpers/environmentVariablesHelper.js
in any available text editor and update the contents of the file so that it contains exactly the following valuesThese are the mandatory keys required to run the application in Local environment. Please update them with appropriate values in
<PROJECT-FOLDER>/src/app/helpers/environmentVariablesHelper.js
Once the file is updated with appropriate values, then you can proceed with running the application
Running Application
Sunbird portal or web application
Run the following command in the {PROJECT-FOLDER}/src/app/client folder
$ ng build --watch=true
Wait for the build process to complete before proceeding to the next step
Sunbird services stack or the backend API interface
Run the following command in the {PROJECT-FOLDER}/src/app folder
$ npm run server
The local HTTP server is launched at
http://localhost:3000
Project Structure
Testing
Sunbird portal or web application
Sunbird services stack or the backend API interface
Last updated