File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,11 @@ Other tools:
25
25
- Taskfile
26
26
- Testcontainers
27
27
28
+ ## The app
29
+
30
+ It's a setup for Clojure/Script application with an example API route for getting
31
+ movies list and showing them on the main page.
32
+
28
33
## Deploy: TL;DR
29
34
30
35
First deploy:
@@ -65,7 +70,7 @@ so in this case you don't need to install anything else to deploy your app.
65
70
and use just ` kamal ` command instead of dockerized version:_
66
71
67
72
Install [ mise-en-place] ( https://mise.jdx.dev/getting-started.html#quickstart ) (or [ asdf] ( https://asdf-vm.com/guide/getting-started.html ) ),
68
- add ` ruby 3.3.0 ` to ` .tool-versions ` file and run ` mise install ruby ` :
73
+ add ` ruby 3.3.0 ` to ` .tool-versions ` file and run:
69
74
70
75
``` shell
71
76
brew install libyaml # or on Ubuntu: `sudo apt-get install libyaml-dev`
@@ -212,6 +217,8 @@ POSTGRES_PASSWORD=demo
212
217
DATABASE_URL=jdbc:postgresql://localhost:5432/demo? user=demo& password=demo
213
218
````
214
219
220
+ ⚠️ Do not include file ` .env.local` to git repository!
221
+
215
222
Run database for local development:
216
223
217
224
` ` ` shell
@@ -230,6 +237,12 @@ Run backend in the REPL:
230
237
(reset)
231
238
` ` `
232
239
240
+ Run tests:
241
+
242
+ ` ` ` shell
243
+ task test
244
+ ` ` `
245
+
233
246
# # License
234
247
235
248
Copyright © 2024 Andrey Bogoyavlenskiy
You can’t perform that action at this time.
0 commit comments