Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hitchhicker/online-annotation-system
An Online Image Annotation System
https://github.com/hitchhicker/online-annotation-system
Last synced: 17 days ago
JSON representation
An Online Image Annotation System
- Host: GitHub
- URL: https://github.com/hitchhicker/online-annotation-system
- Owner: hitchhicker
- License: mit
- Created: 2017-12-22T15:33:14.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-08T00:57:17.000Z (almost 6 years ago)
- Last Synced: 2024-10-20T07:48:49.830Z (19 days ago)
- Language: JavaScript
- Size: 3.82 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Online-Annotation-System
An Online Image Annotation System
## Quick start
### Create local data folder
```commandline
mkdir -p data/xmls
mkdir data/images
```
### Build docker image
```commandline
docker-compose rm -f && docker-compose build app
```
### Launch container
```commandline
docker-compose up
```
For mac user, get docker IP using the following command
```commandline
docker-machine ip
```
Then go to **{docker-machine ip}:8000/login**For linux users: go directly **localhost:8000/login**
- `login`: bingbinadmin
- `password`: bingbinpass
## Run unit test
```commandline
export PYTHONPATH=.
pytest tests
```