Skip to content

Commit 28543bf

Browse files
updated docker compose and docs
1 parent f633385 commit 28543bf

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<p align="center">
2+
<img src="https://banners.beyondco.de/Flask%20Boilerplate.png?theme=light&packageManager=Happy&packageName=Coding&pattern=charlieBrown&style=style_2&description=Production+ready+batteries+included+boilerplate.&md=1&showWatermark=1&fontSize=100px&images=adjustments&widths=50&heights=50">
3+
</p>
4+
15
### Flask Boilerplate
26

37
A production-grade flask application that you can start your projects without hesitation and without worrying about managing the project structure.
@@ -77,4 +81,8 @@ For task queues and heavy background services, **[Celery](https://docs.celerypro
7781
# Start celery worker
7882

7983
celery -A celery_worker.celery worker --pool=solo --loglevel=info
80-
```
84+
```
85+
86+
## Contributions
87+
88+
Contributions are welcome! If you have any questions or suggestions, please feel free to open an issue or create a pull request.

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
web:
44
container_name: web
55
build: .
6-
command: gunicorn -w 4 wsgi:server -t 90 -b 0.0.0.0:5000 --reload
6+
command: gunicorn -w 4 wsgi:app -t 90 -b 0.0.0.0:5000 --reload
77
volumes:
88
- .:/usr/src/app/
99
ports:
@@ -37,4 +37,4 @@ services:
3737
volumes:
3838
postgres_data:
3939
redis_data:
40-
driver: local
40+
driver: local

0 commit comments

Comments
 (0)