Fixup README and remove unused javascript.

jekyll
Joshua Potter 2023-12-14 09:08:43 -07:00
parent 825e725e04
commit 2e248f8aff
4 changed files with 7 additions and 10 deletions

View File

@ -1,10 +1,11 @@
# NodeJS Flake Template # Portfolio
This is a template for constructing a working environment for This is a single-page springboard for my various links/projects/services.
[Node.js](https://nodejs.org/en) development (version v18.18.2) with the [npm](https://www.npmjs.com/)
(version 9.8.1) packaging tool. [direnv](https://direnv.net/) can be used to ## Quickstart
launch a dev shell upon entering this directory (refer to `.envrc`). Otherwise
run via: [direnv](https://direnv.net/) can be used to launch a dev shell upon entering
this directory (refer to `.envrc`). Otherwise run via:
```bash ```bash
$ nix develop $ nix develop
``` ```
@ -24,4 +25,3 @@ $ git config --local core.hooksPath .githooks/
``` ```
If running [direnv](https://direnv.net/), this hook is installed automatically If running [direnv](https://direnv.net/), this hook is installed automatically
when entering the directory. when entering the directory.

View File

@ -1,6 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
tsc
tailwindcss -i ./src/main.css -o ./dist/main.css tailwindcss -i ./src/main.css -o ./dist/main.css
cp ./src/index.html ./dist/index.html cp ./src/index.html ./dist/index.html
cp -a ./imgs ./dist cp -a ./imgs ./dist

View File

@ -5,7 +5,6 @@
<meta name="description" content="Joshua Potter portfolio" /> <meta name="description" content="Joshua Potter portfolio" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<link phx-track-static rel="stylesheet" href="./main.css" /> <link phx-track-static rel="stylesheet" href="./main.css" />
<script defer type="text/javascript" src="./main.js"></script>
</head> </head>
<body class="bg-primary"> <body class="bg-primary">
<div <div

View File

@ -1 +0,0 @@
console.log("Hello, world!");