https://github.com/neuralsignal/loris
Loris: Database and Analysis application for a Drosophila Lab (or any lab)
https://github.com/neuralsignal/loris
data-analysis data-structures database datajoint flask neuroscience
Last synced: 19 days ago
JSON representation
Loris: Database and Analysis application for a Drosophila Lab (or any lab)
- Host: GitHub
- URL: https://github.com/neuralsignal/loris
- Owner: neuralsignal
- License: mit
- Created: 2020-01-15T03:43:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-21T10:35:10.000Z (about 2 years ago)
- Last Synced: 2025-09-04T20:10:06.969Z (7 months ago)
- Topics: data-analysis, data-structures, database, datajoint, flask, neuroscience
- Language: Python
- Homepage:
- Size: 16.1 MB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Citation: CITATION.cff
Awesome Lists containing this project
README
# Loris
[](https://zenodo.org/badge/latestdoi/233992505)
### Database and Analysis application for a Drosophila Lab (or any lab)
Loris is in development with core features still being tested and added.
Documentation for the different features will be added soon.
## Requirements
* Pip
* Git
## Pulling the source code
Pull the recent version of Loris:
```
git pull https://github.com/gucky92/loris.git
```
## Installation of API
Install using the pip command:
```
cd loris
pip install --user .
```
## Running App after API Installation
Create your own `config.json` file. There is a template file called `_config.json`.
If you do not have a running MySQL database yet, you can install a running SQL database by cloning a mysql-docker git repository and running docker-compose:
```
git clone https://github.com/gucky92/mysql-docker
cd mysql-docker/slim
sudo docker-compose up -d
```
To run the Loris app (in the main loris directory):
```
conda activate loris # activate the environment if you haven't done so
python run.py
```
The app should now be running on port 1234.