Skip to content

Commit cbbd286

Browse files
committed
readme added
1 parent a5a377f commit cbbd286

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Microservice Template with Docker
2+
3+
This is a small project where the following is combined in order to create a usable microservice:
4+
5+
- [RestAPI (Python + Flask)](https://github.com/pallets/flask)
6+
- [Postgres Database](https://www.postgresql.org/)
7+
- [Nginx](https://www.nginx.com/)
8+
- [Postgres db explorer](http://sosedoff.github.io/pgweb/) (This can be removed, it is only used for testing)
9+
10+
## Test it
11+
12+
- Clone and start it:
13+
14+
```sh
15+
git clone https://github.com/gaborvecsei/Dockerized-Microservice-Template.git
16+
17+
sudo ./start.sh
18+
```
19+
20+
- Stop it:
21+
22+
```sh
23+
sudo docker-compose down
24+
```
25+
26+
- See the container logs:
27+
28+
```sh
29+
sudo docker-compose logs -f
30+
```
31+
32+
## TODO
33+
34+
- [ ] Log In
35+
- [ ] User Page
36+
- [ ] Registration
37+
- [ ] Billing (Buying units)

0 commit comments

Comments
 (0)