Skip to content

Commit

Permalink
add command for migration purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
ReneWerner87 committed Apr 18, 2024
1 parent 61a2ec0 commit 549b5c7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
*.test
*.out
.idea/
vendor
17 changes: 17 additions & 0 deletions development.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Local Development

Install [reflex](github.com/cespare/reflex)
```bash
go install github.com/cespare/reflex@latest
```

Use reflex to watch for changes in the project and recompile the binary
```bash
reflex -r '\.go$' -- go install ./fiber
```

Test the binary in fiber project
```bash
cd my-fiber-project
fiber version
```

0 comments on commit 549b5c7

Please sign in to comment.