Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 401 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 401 Bytes

zoo_search

Search bar for volunteer posts on Zooniverse

Startup

export TYPESENSE_API_KEY=xyz
    
mkdir $(pwd)/typesense-data

docker run -p 8108:8108 \
            -v$(pwd)/typesense-data:/data typesense/typesense:26.0 \
            --data-dir /data \
            --api-key=$TYPESENSE_API_KEY \
            --enable-cors

Or with Compose

docker-compose up