Skip to content

Commit

Permalink
initial migration to Astro
Browse files Browse the repository at this point in the history
  • Loading branch information
alissonlauffer committed Jul 7, 2024
1 parent c5a16ed commit 0d27f72
Show file tree
Hide file tree
Showing 23 changed files with 563 additions and 442 deletions.
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# build output
dist/
# generated types
.astro/

# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*


# environment variables
.env
.env.production

# macOS-specific files
.DS_Store

# jetbrains setting folder
.idea/

.zed/
4 changes: 4 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}
11 changes: 11 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
# site-lyricspy
# LyricsPy website

## Building

```bash
bun install
bun run build
```

Build results are in the `dist` directory.

## Testing

```bash
bun run dev
```
8 changes: 8 additions & 0 deletions astro.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { defineConfig } from 'astro/config';

import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
integrations: [tailwind()]
});
Binary file added bun.lockb
Binary file not shown.
66 changes: 0 additions & 66 deletions css/code.css

This file was deleted.

128 changes: 0 additions & 128 deletions css/nowplaying.css

This file was deleted.

23 changes: 0 additions & 23 deletions go/index.html

This file was deleted.

23 changes: 0 additions & 23 deletions index.html

This file was deleted.

19 changes: 0 additions & 19 deletions js/code.js

This file was deleted.

Loading

0 comments on commit 0d27f72

Please sign in to comment.