Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.

Commit b3e87f7

Browse files
committed
💄 Rebranding!
1 parent 1657905 commit b3e87f7

36 files changed

Lines changed: 11371 additions & 122 deletions

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: Report a bug
3-
about: Create a report to help Masterchef improve
3+
about: Create a report to help Misterchef improve
44
title: "\U0001F41B Fix ..."
55
labels: bug
66
assignees: CosasDePuma
Lines changed: 7 additions & 24 deletions
Loading

.github/README/misterchef.png

7.51 KB
Loading

Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ RUN mkdir -p /app/backend/public && \
55
yarn install && yarn run compile
66

77
FROM golang:alpine as backend
8-
WORKDIR /go/src/github.com/cosasdepuma/masterchef/
8+
WORKDIR /go/src/github.com/cosasdepuma/misterchef/
99
COPY ./backend/ ./
1010
COPY --from=frontend /app/backend/public/ ./public/
1111
RUN apk update && \
1212
apk add --virtual essentials --no-cache git upx && \
13-
GOOS=linux GOARCH=386 CGO_ENABLED=0 go build -a -ldflags="-w -s -extldflags \"-static\"" -o ./bin/masterchef ./main.go && \
14-
upx -9 --ultra-brute ./bin/masterchef && \
13+
GOOS=linux GOARCH=386 CGO_ENABLED=0 go build -a -ldflags="-w -s -extldflags \"-static\"" -o ./bin/misterchef ./main.go && \
14+
upx -9 --ultra-brute ./bin/misterchef && \
1515
apk del essentials && \
1616
rm -rf /var/cache/apk/*
1717

@@ -25,16 +25,16 @@ RUN apk update && \
2525
--no-create-home \
2626
--disabled-password \
2727
--shell "/sbin/nologin" \
28-
masterchef
28+
misterchef
2929

3030
FROM scratch
3131
COPY --from=system /usr/share/zoneinfo /usr/share/zoneinfo
3232
COPY --from=system /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
3333
COPY --from=system /etc/passwd /etc/passwd
3434
COPY --from=system /etc/group /etc/group
35-
COPY --from=backend /go/src/github.com/cosasdepuma/masterchef/bin/masterchef /app/masterchef
36-
USER masterchef:masterchef
35+
COPY --from=backend /go/src/github.com/cosasdepuma/misterchef/bin/misterchef /app/misterchef
36+
USER misterchef:misterchef
3737
EXPOSE 7767
3838
WORKDIR /app
3939
ENV MC_ADDR ":7767"
40-
ENTRYPOINT ["/app/masterchef"]
40+
ENTRYPOINT ["/app/misterchef"]

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ to attach them to the start of each source file to most effectively
629629
state the exclusion of warranty; and each file should have at least
630630
the "copyright" line and a pointer to where the full notice is found.
631631

632-
Masterchef Framework. The most delicious pentesting tool.
632+
Misterchef Framework. The most delicious pentesting tool.
633633
Copyright (C) 2021 Diego Enrique Fontán Lorenzo
634634

635635
This program is free software: you can redistribute it and/or modify

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# App
2-
APPNAME = masterchef
2+
APPNAME = misterchef
33
VERSION = $(shell cat version)
44
FRONTEND = frontend
55
BACKEND = backend
@@ -23,10 +23,10 @@ dist/$(APPNAME)-$(VERSION): fmt $(OBJS)
2323
$(CC) $(LDFLAGS) -a -o $@ main.go
2424

2525
$(BACKEND)/public/index.go: FORCE $(FRONTEND)/node_modules $(FRONTEND)/package.json
26-
@yarn --cwd $(FRONTEND) run compile
26+
@npm --prefix $(FRONTEND) run compile
2727

2828
$(FRONTEND)/node_modules: $(FRONTEND)/package.json
29-
@yarn --cwd $(FRONTEND) install
29+
@npm --prefix $(FRONTEND) install
3030

3131
.PHONY: fmt
3232
fmt:

0 commit comments

Comments
 (0)