This project provides open interoperable specifcations for creating decentralized skills and education networks. It is an adaptation of beckn protocol core specification with added taxonomies and sample network policies for the skills and education sector.
This repository is specifically for Training and Courses.
You can get your own fork/copy of DSEP-UI by using the Fork button.
You need to clone (download) it to a local machine using
git clone https://github.com/Your_Username/dsep-ui.git
This makes a local copy of the repository in your machine.
Once you have cloned the DSEP-UI
repository in GitHub, move to that folder first using the change directory command.
# This will change directory to a folder dsep-ui
cd dsep-ui
Move to this folder for all other commands.
Run the following commands to see that your local copy has a reference to your forked remote repository in GitHub
git remote -v
origin https://github.com/Your_Username/dsep-ui.git (fetch)
origin https://github.com/Your_Username/dsep-ui.git (push)
Now, add a reference to the original DSEP-UI repository using
git remote add upstream https://github.com/Samagra-Development/dsep-ui.git
This adds a new remote named upstream.
See the changes using
git remote -v
origin https://github.com/Your_Username/dsep-ui.git (fetch)
origin https://github.com/Your_Username/dsep-ui.git (push)
upstream https://github.com/Samagra-Development/dsep-ui.git (fetch)
upstream https://github.com/Samagra-Development/dsep-ui.git (push)
Using Yarn (preferable)
# Check out to the frontend code
cd apps/client
# To install all the dependencies
yarn
# To start the application
yarn start
OR
using NPM
# Check out to the frontend code
cd apps/client
# To install all the dependencies
npm install
# To start the application
npm start
The React application will start on port 5173. Go to: http://localhost:5173
This project follows the MIT License.