Skip to content

Commit 38e0d6e

Browse files
committed
add links for more docs on getting started
1 parent 6e6a5fe commit 38e0d6e

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

content/documentation/getting-started.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cd example-app
1818
composer repl
1919
```
2020

21-
> For web projects: [web-skeleton](https://github.com/phel-lang/web-skeleton)
21+
> For web projects: [web-skeleton](https://github.com/phel-lang/web-skeleton)
2222
2323
## Manual Setup
2424

@@ -64,6 +64,8 @@ require __DIR__ . '/../vendor/autoload.php';
6464
php -S localhost:8000 ./src/index.php
6565
```
6666

67+
> 📘 [More on running code](/documentation/cli-commands#run-a-script)
68+
6769
## REPL
6870

6971
```bash
@@ -77,6 +79,8 @@ Try:
7779
(println "Hello" name)
7880
```
7981

82+
> 📘 [More on REPL](/documentation/repl)
83+
8084
## Debugging
8185

8286
```phel
@@ -91,26 +95,34 @@ return (require __DIR__ . '/phel-config.php')
9195
->setKeepGeneratedTempFiles(true);
9296
```
9397

98+
> 📘 [More on debugging](/documentation/debug)
99+
94100
## Build & Deploy
95101

96102
```bash
97103
vendor/bin/phel build
98104
php out/index.php
99105
```
100106

107+
> 📘 [More on build](/documentation/cli-commands/#build-the-project)
108+
101109
## Testing
102110

103111
```bash
104112
vendor/bin/phel test --filter foo
105113
```
106114

115+
> 📘 [More on testing](/documentation/testing)
116+
107117
## Handy Macros
108118

109119
```phel
110120
(when condition (println "if true"))
111121
(-> {:name "Phel"} (:name) (str "Lang"))
112122
```
113123

124+
> 📘 [More on macros](/documentation/macros)
125+
114126
## Editor Support
115127

116128
- [VSCode](https://github.com/phel-lang/phel-vs-code-extension)

0 commit comments

Comments
 (0)