jaketrent / oneaccord

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

oneaccord

Seed Data

sqlite3 oneaccord_dev.db
.mode csv
.import /home/jaketrent/dev/oneaccord/resources/enEsHymns.csv hymn_temp
insert into hymn (english_num,english_name,spanish_num,spanish_name) select * from hymn_temp;

Start a REPL in your editor or terminal of choice.

Start the server with:

(go)

The default API is available under http://localhost:3000/api

System configuration is available under resources/system.edn.

To reload changes:

(reset)

REPLs

Cursive

Configure a REPL following the Cursive documentation. Using the default "Run with IntelliJ project classpath" option will let you select an alias from the "Clojure deps" aliases selection.

CIDER

Use the cider alias for CIDER nREPL support (run clj -M:dev:cider). See the CIDER docs for more help.

Note that this alias runs nREPL during development. To run nREPL in production (typically when the system starts), use the kit-nrepl library through the +nrepl profile as described in the documentation.

Command Line

Run clj -M:dev:nrepl or make repl.

Note that, just like with CIDER, this alias runs nREPL during development. To run nREPL in production (typically when the system starts), use the kit-nrepl library through the +nrepl profile as described in the documentation.

About


Languages

Language:Clojure 56.7%Language:HTML 18.8%Language:Ruby 10.4%Language:CSS 8.6%Language:Shell 4.1%Language:Dockerfile 1.0%Language:Makefile 0.3%