feat(backend): add initial backend
Backend as is can query GitHub for the information that will be necessary later on in the frontend's pages. It does not cache this information yet though. Signed-off-by: Lucien Cartier-Tilet <lucien@phundrak.com>
This commit is contained in:
13
docker-compose.yml
Normal file
13
docker-compose.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
version: '3'
|
||||
services:
|
||||
redis:
|
||||
image: redis:alpine
|
||||
restart: unless-stopped
|
||||
|
||||
phuncache:
|
||||
build: .
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 8080:8000
|
||||
env_file:
|
||||
- .env
|
||||
Reference in New Issue
Block a user