formatting for github.com

This commit is contained in:
JesseBot 2022-10-07 16:47:23 +02:00 committed by GitHub
parent 0684500498
commit fe7800ac7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,11 +23,9 @@ Clone this github repo into your desired webroot, and install dependencies:
You can configure everything (e.g. website title, your photo, quote, etc)
by editing `config.yaml` and replacing all the Jesse data with your own.
For testing locally with gunicorn, _without_ a docker rebuild, you can just do:
For testing locally: `gunicorn app:app`
`gunicorn app:app`
For testing with docker locally, you can do:
For testing locally _with docker_, you can do:
```bash
docker build . -t <name of tag you want>
@ -36,7 +34,6 @@ For testing with docker locally, you can do:
docker run --rm -p 8000:8080 <name of the tag you used>
```
Then you can go to http://127.0.0.1:8000 in a browser to view your changes.