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 testThis 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.gitChange directory into the cloned folder
$ cd basicsynbio_frontendInstall frontend dependencies located in package.json
$ yarn installStart app in Development mode
$ yarn startThis causes the frontend to run locally to view it, Open http://localhost:3000 to view it in the browser.