Skip to content

Kaminyou/Computer-Vision-Research-Human-Evaluation-Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Computer-Vision-Research-Human-Evaluation-Server

A well-developed full-stack server for human evaluation study in computer vision research. img img

Quick start

A Dockerfile is prepared for quick start.

  1. Before you build the docker image, please modify SERVER_URL in frontend/src/config.json to match your environment.
  2. Build docker image
./build.sh
  1. Run the docker container
docker run -p 9090:9090 -it cvserver
  1. The server will run on port 9090

Customize

  1. We recommend you use docker and install nginx in it.
  2. Configure nginx config.
server {
        listen 9090 default_server;
        listen [::]:9090 default_server;

        root /var/www/html;

        index index.html index.htm index.nginx-debian.html;

        server_name _;
        location ^~ /api/ {
                proxy_pass http://127.0.0.1:9292;
                proxy_set_header Host $host;
        }
}
  1. Build the frontend server and move everything in frontend/build/* into /var/www/html/ or somewhere you specifiy in the config.
  2. Run the backend server.

About

A well-developed server for human evaluation in computer vision research

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published