generated using Luminus version "4.30"
You will need Leiningen 2.0 or above installed.
You will need some version of PostgreSQL, w-n-c is currently testing against v13.4.
- Login to PostgreSQL interactive terminal as a user with CREATE privilege on the current database.
psql
*
*step may vary depending on how you access your admin account
- Switch to your board game hunter database
\c board_game_hunter_dev
- Check to see if "uuid-ossp" is installed on your db server
select * from pg_extension;
- If you do not see uuid-ossp in the 'extname' column of the table (or are too lazy to check):
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
- You can confirm it is working by running one of the extension's procedures
select * from uuid_generate_v4();
The dev-config.edn
file should look something like this:
{:dev true
; port on which the application server will host the site
:port 3000
; when :nrepl-port is set the application starts the nREPL server on load
:nrepl-port 7000
; set your dev database connection URL here
:database-url "postgresql://localhost/board_game_hunter_dev?user=numberfoursir&password=livelongandpostgre"}
Please change the username and password from the one commited to this public repo.
To start a web server for the application, run:
lein run
Copyright © 2022 William Newell (w-n-c)