[chore] change path && add backend
This commit is contained in:
parent
bc901c6273
commit
1eddad152e
4 changed files with 11 additions and 3 deletions
8
project.clj
Normal file
8
project.clj
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
(defproject liberty-hu "0.1.0-SNAPSHOT"
|
||||||
|
:description "FIXME: write description"
|
||||||
|
:url "http://example.com/FIXME"
|
||||||
|
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
|
||||||
|
:url "https://www.eclipse.org/legal/epl-2.0/"}
|
||||||
|
:dependencies [[org.clojure/clojure "1.11.1"]
|
||||||
|
[ring "1.11.0-alpha1"]]
|
||||||
|
:repl-options {:init-ns backend.core})
|
|
@ -1,7 +1,7 @@
|
||||||
;; shadow-cljs configuration
|
;; shadow-cljs configuration
|
||||||
{:source-paths
|
{:source-paths
|
||||||
["src/dev"
|
["src"
|
||||||
"src/main"
|
"src/dev"
|
||||||
"src/test"]
|
"src/test"]
|
||||||
|
|
||||||
:dependencies
|
:dependencies
|
||||||
|
@ -12,7 +12,6 @@
|
||||||
[day8.re-frame/re-frame-10x "1.6.0"]]
|
[day8.re-frame/re-frame-10x "1.6.0"]]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
:dev-http {8080 "public"}
|
:dev-http {8080 "public"}
|
||||||
:builds
|
:builds
|
||||||
{:frontend
|
{:frontend
|
||||||
|
|
1
src/backend/core.clj
Normal file
1
src/backend/core.clj
Normal file
|
@ -0,0 +1 @@
|
||||||
|
(ns backend.core)
|
Loading…
Reference in a new issue