Compare commits
No commits in common. "19212d23f82ad0bef9c1e26b1b54baba416f2756" and "4d5512367aba866a949b00c39df1e25e04989645" have entirely different histories.
19212d23f8
...
4d5512367a
7 changed files with 1 additions and 1536 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
node_modules
|
|
||||||
output.css
|
|
|
@ -1,19 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo "Building static assets for dylanbaird.com."
|
|
||||||
cp -r ../dylanbaird.com .
|
cp -r ../dylanbaird.com .
|
||||||
cd ./dylanbaird.com
|
|
||||||
npx tailwindcss -i ./src/input.css -o ./src/output.css --minify
|
|
||||||
rm ./src/input.css
|
|
||||||
cd ../
|
|
||||||
|
|
||||||
echo "Building Docker container."
|
|
||||||
sudo docker build -t boulangermontrealais/barrios:caddy .
|
sudo docker build -t boulangermontrealais/barrios:caddy .
|
||||||
|
|
||||||
echo "Pushing Docker container to registry."
|
|
||||||
sudo docker push boulangermontrealais/barrios:caddy
|
sudo docker push boulangermontrealais/barrios:caddy
|
||||||
|
|
||||||
echo "Cleaning up artifacts for dylanbaird.com."
|
|
||||||
rm -rf dylanbaird.com
|
rm -rf dylanbaird.com
|
||||||
|
|
||||||
echo "Build and push completed successfully."
|
echo "Build and push completed successfully."
|
1493
dylanbaird.com/package-lock.json
generated
1493
dylanbaird.com/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"devDependencies": {
|
|
||||||
"tailwindcss": "^3.4.17"
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +1 @@
|
||||||
<!doctype html>
|
<h1>dylan baird</h1>
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link href="./output.css" rel="stylesheet">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1 class="text-3xl font-bold underline">
|
|
||||||
dylan baird
|
|
||||||
</h1>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,3 +0,0 @@
|
||||||
@tailwind base;
|
|
||||||
@tailwind components;
|
|
||||||
@tailwind utilities;
|
|
|
@ -1,9 +0,0 @@
|
||||||
/** @type {import('tailwindcss').Config} */
|
|
||||||
module.exports = {
|
|
||||||
content: ["./src/**/*.{html,js}"],
|
|
||||||
theme: {
|
|
||||||
extend: {},
|
|
||||||
},
|
|
||||||
plugins: [],
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue