Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
  • master
  • dz-refactor-some-code
  • v1.2.0
  • v1.0.0
5 results

clojure-web-application

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Dmytro Zaporozhets authored
    Signed-off-by: default avatarDmytro Zaporozhets <dzaporozhets@gitlab.com>
    f2cae14c
    History

    Sample web application built with Clojure

    pipeline status

    The goal of this project is to make a blank web application with authentication and tests. It can be used as an template for starting a new project on Clojure or for learning Clojure.

    Merge requests to this project are welcome!

    Index

    Screenshot

    Just in case you are curious how it looks when started

    Screen_Shot_2017-08-06_at_6.20.18_PM

    Prerequisites

    1. [Leiningen][https://github.com/technomancy/leiningen] 2.0.0 or above installed.
    2. PostgreSQL

    Features

    • Registration
    • Login
    • Profile page with ability to update the password and remove the account
    • PostgreSQL database with migrations
    • Layout with Bootstrap CSS and jQuery

    TODO

    • add remember me checkbox for authentication
    • add forget password feature
    • add email confirmation for signup

    Running

    Create the database:

    createdb sample

    To start a web server for the application, run:

    lein ring server

    Now visit http://localhost:3000/ to see the app running.

    Run as container

    The repository contains the Dockerfile. You can build and run the app with Docker. App will be running on port 5000 by default. Database is not included. So make sure to pass a DATABASE_URL to the container.

    Database

    Application reads the DATABASE_URL environment variable for the database connection. If none provided, it will use the default value from src/sample/db.clj.

    Migrations

    Migrations are run automatically when you start the app or tests. If you need to manually run migrations, you can use next command:

    lein migratus migrate

    Tests

    To run tests you need to setup a test database

    # create a separate database for tests
    createdb sample-test
    
    # run tests
    DATABASE_URL=postgresql://localhost:5432/sample-test lein test