cat/README.md

1.5 KiB

cat

generated using Luminus version "3.10.29" init with options: postgres, cljs, auth, oauth, site, kibit

Prerequisites

You will need Leiningen 2.0 or above installed.

Development

Running

Environment variables:

Copy dev-config.edn_example to dev-config.edn and fill in the needed fields.

Use test-config.edn for tests.

Install the needed dependecies

lein deps

To start the web server for the application, run:

lein run

To start the clientside server (this watches the cljs files and automatically recompiles on change), run:

lein figwheel

When making database schema changes, start a repl user environment using

lein repl

You can start the webserver in this repl using

(start)

Make a new database migration:

(create-migration "migration name")

Now edit the newly created .sql files.

Run the pending migrations

(migrate)

Roll back the last set of migrations

(rollback)

Reset the state of the database

(reset-db)

Restart the database (this is needed after changes in the sql querries)

(restart-db)

Note that you can't do this when running the server with lein run. In this case you need to shutdown and restart using run or repl.

You can find these function available in the userspace definitions

Production

lein uberjar

export DATABASE_URL="jdbc:postgres://localhost:port/dbname?user=username&password=password"
java -jar target/uberjar/cat.jar