This repository is hosted at: https://basicsynbio.web.app
A frontend webapp for the python package basicsynbio built with react.js
This repository uses unittest using the Jest and Enzyme packages
The unit tests themselves are stored within the src/__tests__
folder and can be tested with the following command:
$ yarn run test
This repository uses prettier code formatting.
To check if you code is prettier compliant run:
$ yarn prettier --check .
To allow prettier to rewrite your code to be prettier compliant run:
$ yarn prettier --write .
Clone our repositry
$ git clone https://github.com/LondonBiofoundry/basicsynbio_frontend.git
Change directory into the cloned folder
$ cd basicsynbio_frontend
Install frontend dependencies located in package.json
$ yarn install
Start app in Development mode
$ yarn start
This causes the frontend to run locally to view it, Open http://localhost:3000 to view it in the browser.