finish migrograd main functions.

This commit is contained in:
PublicMatt
2024-03-18 19:45:15 -07:00
parent 4c9f7d8d7d
commit 5b0a350dd4
11 changed files with 399 additions and 16 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
NAME=micrograd
DOCKER=podman
PORT=8008
.PHONY=build run stop
all: stop rm build run
stop:
${DOCKER} stop ${NAME}
rm:
${DOCKER} rm ${NAME}
run:
${DOCKER} run -p ${PORT}:${PORT} -d --name ${NAME} -t ${NAME}
build:
${DOCKER} build . --tag ${NAME}