[chore] change path && add backend

This commit is contained in:
SouthFox 2023-08-20 18:08:13 +08:00
parent bc901c6273
commit 1eddad152e
4 changed files with 11 additions and 3 deletions

8
project.clj Normal file
View 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})

View file

@ -1,7 +1,7 @@
;; shadow-cljs configuration
{:source-paths
["src/dev"
"src/main"
["src"
"src/dev"
"src/test"]
:dependencies
@ -12,7 +12,6 @@
[day8.re-frame/re-frame-10x "1.6.0"]]
:dev-http {8080 "public"}
:builds
{:frontend

1
src/backend/core.clj Normal file
View file

@ -0,0 +1 @@
(ns backend.core)