generated from wolfpackthatcodes/vite-typescript-package-toolkit
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
33 lines (29 loc) · 981 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!make
#--------------------------------------------------------------------------
# The Makefile offers a developer-friendly approach to automate
# the set up of the TypeScript HTTP Client.
#
# You can run the following make command:
#
# make local-setup
#--------------------------------------------------------------------------
# The project source code directory.
CODE_DIR=/code
# Include the DotEnv file if it exists.
ifneq (,$(wildcard ./.env))
include .env
export
endif
#--------------------------------------------------------------------------
# Makefile targets.
#
# The `local-setup` target executes the Yarn `install`
# command to install package's dependencies.
#
# https://vitejs.dev/guide/#scaffolding-your-first-vite-project
#--------------------------------------------------------------------------
local-setup:
exec docker run -it --rm --name http-client \
-v $(PWD)${CODE_DIR}:/app \
-w="/app" \
node:alpine /bin/sh -c "yarn install --immutable"