https://github.com/bk-scoss/scoss_tagger
https://github.com/bk-scoss/scoss_tagger
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bk-scoss/scoss_tagger
- Owner: BK-SCOSS
- Created: 2021-04-07T07:56:57.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-19T14:17:50.000Z (over 4 years ago)
- Last Synced: 2025-09-18T20:38:33.794Z (9 months ago)
- Language: HTML
- Size: 396 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# scoss_tagger
## How to run
### Run by docker
Build docker image (you might need run with sudo):
```
docker-compose up
```
Remove docker containers:
```
docker-compose down
```
### Run by python command
Note that, we cannot connect to local mongodb anymore. To use this way, please config mongo connecting to localhost.
Clone this project and install requirements:
$ git clone https://github.com/BK-SCOSS/scoss_tagger.git
$ cd scoss_tagger
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
Run the server:
$ cd webapp/
$ uvicorn index:app
Then visite with your web browser the URL: `http://127.0.0.1:8000`.