1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-23 12:37:07 +00:00

Created Development (markdown)

James Hillyerd
2020-07-25 11:23:49 -07:00
parent 2b83df01b3
commit 4010140bf9

34
Development.md Normal file

@@ -0,0 +1,34 @@
# Development
## Quickstart
You will need a working Go and Node.js environment.
### Initial build
```sh
git clone https://github.com/inbucket/inbucket.git
```
Build the web UI:
```sh
cd inbucket/ui
npm i
npm run build
```
Build the backend:
```sh
cd ..
make
```
Test Inbucket starts and the web UI loads:
```sh
./inbucket
```
Point your web browser at http://127.0.0.1:9000/ and select the Status tab.