Skip to content

Commit

Permalink
update read.me
Browse files Browse the repository at this point in the history
  • Loading branch information
JackySu committed Feb 13, 2023
1 parent 20228f6 commit e773d92
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# architecture-center-input-form
Input form for Red Hat Architecture Center

`gunicorn app:app -b 0.0.0.0:5297 -w 8 -k uvicorn.workers.UvicornWorker & yarn dev`
run with docker:
```bash
cd architecture-center-input-form-master
docker build . -t {some_name}
docker run --expose 5297 -p 5297:5297 --expose 4621 -p 4621:4621 --rm -it {some_name}:latest
gunicorn app:app -b 0.0.0.0:5297 -w 8 -k uvicorn.workers.UvicornWorker & yarn dev
```

0 comments on commit e773d92

Please sign in to comment.