Skip to content

Commit

Permalink
Makefile seems to work
Browse files Browse the repository at this point in the history
  • Loading branch information
euanwm committed Dec 17, 2024
1 parent f088239 commit ebbb18d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
# OpenWeightlifting Makefile
# Shortcuts to the most common tools should be implemented here.

# Builds the backend server executable
.PHONY: build_backend
build_backend:
cp -r event_data/ backend/
cd backend && go build -o backend

# Builds the frontend files
.PHONY: build_frontend
build_frontend:
@cd python_tools && pipenv install && pipenv run python3 fe_builder.py
cd frontend && npm install

# Installs the python tools used to update the database
.PHONY: install_tools
install_tools:
Expand Down

0 comments on commit ebbb18d

Please sign in to comment.