├── .gitignore ├── Dockerfile ├── README.md ├── indexer └── indexer.go ├── searchengine └── searchengine.go ├── test_docker.sh └── test_locally.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkuiyi/helloworld/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkuiyi/helloworld/HEAD/README.md -------------------------------------------------------------------------------- /indexer/indexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkuiyi/helloworld/HEAD/indexer/indexer.go -------------------------------------------------------------------------------- /searchengine/searchengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkuiyi/helloworld/HEAD/searchengine/searchengine.go -------------------------------------------------------------------------------- /test_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkuiyi/helloworld/HEAD/test_docker.sh -------------------------------------------------------------------------------- /test_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangkuiyi/helloworld/HEAD/test_locally.sh --------------------------------------------------------------------------------