swh:1:snp:5bfb045142dfaaef6c919d97f4023bc682e0928b
Raw File
Tip revision: 5d50e95f605545747800c0a7103859da18017667 authored by Jiayi Hong on 11 December 2023, 17:36:49 UTC
Update README.md
Tip revision: 5d50e95
README.md
# Website for Cell Lineages

**Cell Lineage Web** is the website that allows biologists to freely do cell lineages with the help of Machine Learning.

## Pre-Requisites

* copy `.env.sample` to `.env` and edit variables accordingly
* Note that the website cannot run on Macbooks with M1 chips since TensorflowJS is incompatible with them.
* It would be better to use stable Node.js and npm versions. We tested on Node.js (v14.17.1) and npm (v7.7.6), and it works well.

## Installation
---

```
npm install
```

```
npm run build
```
## Starting up
---

### Run the website

Start the backend (static) file server:
```
npm run backend
```

Start the frontend (parcel with hot reload for developpers)
```
npm run frontend
```

## Browse

http://localhost:1234
back to top