Metadata-Version: 2.1
Name: nwb-web-gui
Version: 0.1.1
Summary: Web graphical user interface for NWB conversion and exploring
Home-page: https://github.com/catalystneuro/nwb-web-gui
Author: Luiz Tauffer and Vinicius Camozzato Vaz
Author-email: luiz@taufferconsulting.com
License: UNKNOWN
Keywords: nwb
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: dash
Requires-Dist: dash-cool-components
Requires-Dist: dash-bootstrap-components
Requires-Dist: dash-daq
Requires-Dist: h5py
Requires-Dist: jupyter
Requires-Dist: jupyter-client
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: nwbwidgets
Requires-Dist: pandas
Requires-Dist: psutil
Requires-Dist: pynwb
Requires-Dist: voila

# NWB Web GUI

Web graphical user interface for NWB conversion and visualization.

## 1. Installation
```
pip install -e .
```

## 2. Running
```
python wsgi.py
```

The app should be running on `localhost:5000`

## 3. Running on docker container (referencing a local folder)

- Change on config.ini file the DATA_PATH to /usr/src/nwb_web_gui/files  
- build docker with:
```
docker build -t latest . 
```
- run the docker with:
```
docker run -it -p 5000:5000 -p 8866:8866 -v /host/path/to/filesFolder:/usr/src/nwb_web_gui/files <image_id>
```


## 3. Documentation

[Documentation](https://github.com/catalystneuro/nwb-web-gui/tree/master/documentation)


