This project serves as the Front-end Web platform for the IXO ecosystem.
Back-end for all API calls and DID management
- IXO Module
- IXO Key Extension [ Depreciated in favor of upcoming mobile client]
yarn install
cp .env-example .env
yarn dev
yarn build
yarn start
- Clone the repo, select between dev or impact branches
git clone https://github.com/ixofoundation/ixo-webclient && cd ixo-webclient && git checkout impact
- Rename the .env.example to .env and configure .env
- Configure the nginx config default.conf as needed
- Now build the docker image with
docker build -t ixo-webclient:latest .
Now run the image with either of these two options
- -p specifies the port used to the last number must replicate was is seen in default.conf
docker run -p 3000:3000 ixo-webclient:latest
Modify the port value to the value specified in default.conf if it was changed
docker-compose up -d
IXO-Web is styled using styled components. all styling information is kept within a component. The main file - App.tsx contains theme information, where you can add variables for use through the Web App.
-
App
Displays state-based views for projects lists (eg. Overivew, Loading, Dashboard) -
ProjectContainer
Contains logic for all single-project data and views (eg. Overview, Dashboard, List Providers) -
ProjectsContainer
Contains logic for listing projects and initiation of IXO-Module & IXO-Keysafe Objects. -
HeaderContainer
Contains logic related to network status.
Apache 2.0 license