update readme
Seto Elkahfi committed
Jul 28, 2024 at 21:06 UTC
ea226cce6a9d008315edb2144e4589afbf24fe1d
1 file changed
+10
-2
README.md
+10
-2
@@ -1,6 +1,6 @@
1
# tower-of-bazel
2
3
-> {fast, correct} + {no masters but ourselves} = {tower of bazel}
3
+> {fast, correct} + {polyglot} = {tower of bazel}
4
5
This simple repo demonstrates how to set up a multi-language monorepo.
6
@@ -15,7 +15,7 @@ git lfs pull
15
16
## How to use
17
18
-If you're new to Bazel, read [the documentation](https://bazel.build/docs). Otherwise, query all targets:
18
+Main folder structure is to follow backend / frontent convention. If you're new to Bazel, read [the documentation](https://bazel.build/docs). Otherwise, query all targets:
19
20
```bash
21
bazel query //...
@@ -37,6 +37,14 @@ Generate Xcode project:
37
bazel run //frontend/apple:xcodeproj
38
```
39
40
+### Rails
41
+
42
+Ruby on rails app:
43
+
44
+```bash
45
+bazel run //backend/app:rails
46
+```
47
+
48
## Credits
49
50
- [Tauri](https://github.com/marmos91/tauri-bazel-next-typescript).