https://github.com/meyskens/iwp
https://github.com/meyskens/iwp
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/meyskens/iwp
- Owner: meyskens
- License: gpl-3.0
- Created: 2018-11-18T20:40:15.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-10T13:40:14.000Z (over 6 years ago)
- Last Synced: 2025-01-22T05:17:18.967Z (3 months ago)
- Language: Go
- Size: 7.87 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
IWP
===IWP is a search engine software for immoweb that is extensible to other websites. It is designed for professional usage.
## Build
```
# Linux
$ go build -o webview-example && ./webview-example# MacOS uses app bundles for GUI apps
$ mkdir -p example.app/Contents/MacOS
$ go build -o example.app/Contents/MacOS/example
$ open example.app # Or click on the app in Finder# Windows requires special linker flags for GUI apps.
# It's also recommended to use TDM-GCC-64 compiler for CGo.
# http://tdm-gcc.tdragon.net/download
$ go build -ldflags="-H windowsgui" -o webview-example.exe
```## Project state
I do not actively develop this project anymore, it is currently a working application designed for one specific users group.
It does not properly implement error handling and certain edge cases due time constraints.
While I do not develop this project anymore I am happy to review and accapt pull requests.