Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tfausak/fregexample
An example Frege project.
https://github.com/tfausak/fregexample
Last synced: 26 days ago
JSON representation
An example Frege project.
- Host: GitHub
- URL: https://github.com/tfausak/fregexample
- Owner: tfausak
- License: mit
- Archived: true
- Created: 2015-06-20T14:21:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-22T13:31:43.000Z (over 9 years ago)
- Last Synced: 2024-04-16T03:22:41.139Z (8 months ago)
- Language: Clojure
- Size: 125 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-frege - Template - Template for Frege projects. (Introduction / First Steps)
README
# [Fregexample][]
An example [Frege][] ("free-guh") project.
The easiest way to get started is with [Leiningen][] ("line-ing-en"). Once you
have it installed, you can run this project with:``` sh
$ lein run
```You can also create a redistributable uberjar with:
``` sh
$ lein uberjar
$ java -jar target/fregexample-0.0.0-SNAPSHOT-standalone.jar
```You can also start a Clojure REPL:
``` sh
$ lein repl
```It would be nice to have a [Frege REPL][], but I don't know how to make that
happen. I opened [an issue][] for adding the Frege REPL to Leiningen.There is a rudimentary test suite. You can run it with:
``` sh
$ lein with-profile test run
```It would be nice to use [FrUnit][], but I haven't figured out how to do that
yet.This project borrows liberally from [frege-lein-template][].
[fregexample]: https://github.com/tfausak/fregexample
[frege]: https://github.com/Frege/frege
[leiningen]: http://leiningen.org
[frege repl]: https://github.com/Frege/frege-repl
[an issue]: https://github.com/Frege/frege-lein-plugin/issues/3
[frunit]: https://github.com/melrief/FrUnit
[frege-lein-template]: https://github.com/Frege/frege-lein-template