Skip to content

Commit

Permalink
added baseline golang fuzzy searching project with parity with origin…
Browse files Browse the repository at this point in the history
…al project
  • Loading branch information
rkoval committed Jul 20, 2020
1 parent ebdd691 commit 4b30a6a
Show file tree
Hide file tree
Showing 14 changed files with 693 additions and 602 deletions.
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,22 @@ info.plist.*

# Visual Studio Code
.vscode

# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/

alfred-aws-console-services-workflow
.alfred
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Ryan Koval
Copyright (c) 2020 Ryan Koval

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,18 @@ Open up the Alfred Workflow configuration to see the full list of supported serv
### Contributing

#### Requirements
- Node.js 7.3.0 (or later)
- go 1.14.0 (or later)

#### Installation
From the root of this repo, run:

```sh
cd src
npm install
go get github.com/rkoval/alfred-aws-console-services-workflow
```

#### Adding Entries

To add entries to the Alfred Workflow, modify [the .yml config file](src/console-services.yml) and then run [this script](src/generate_items.js) from its directory. It will parse the .yml file and add elements in-place to the info.plist file, which Alfred reads.
To add entries to the Alfred Workflow, modify [the .yml config file](console-services.yml). This file is used by the executable to populate entries in Alfred.

#### Packaging for Release

Expand Down
Loading

0 comments on commit 4b30a6a

Please sign in to comment.