Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add main entry point to project.clj #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ A GraphQL frontend to the BoardGameGeek XML web api.

## Usage

Coming soon!
- Install [Leiningen](https://leiningen.org/)
- Start the server with

```sh
lein run
```
- Then open your browser to [http://localhost:8888](http://localhost:8888)

## License

Copyright © 2017 Howard M. Lewis Ship

3 changes: 2 additions & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@
[io.pedestal/pedestal.service "0.5.2"]
[io.pedestal/pedestal.jetty "0.5.2"]]
:codox {:source-uri "https://github.com/hlship/boardgamegeek-graphql-proxy/blob/master/{filepath}#L{line}"
:metadata {:doc/format :markdown}})
:metadata {:doc/format :markdown}}
:main bgg-graphql-proxy.main)
5 changes: 5 additions & 0 deletions src/bgg_graphql_proxy/main.clj
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@
(-> (bgg-schema)
pedestal-server
http/start))

(defn -main
"The entry-point for 'lein run'"
[& args]
(start-server))