Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 0 additions & 59 deletions .github/workflows/maintenance.yml

This file was deleted.

27 changes: 24 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
node_modules
.vercel
test.html
# 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/
11 changes: 0 additions & 11 deletions .prettierrc

This file was deleted.

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"
}
]
}
25 changes: 0 additions & 25 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,25 +0,0 @@
# Contributing

## Join the Webring

Insert the following HTML code into your website.

```html
<div id="webring-wrapper">
<a href="https://webring.hackclub.com/" id="previousBtn" class="webring-anchor" title="Previous">‹</a>
<a href="https://webring.hackclub.com/" class="webring-logo" title="Hack Club Webring" alt="Hack Club Webring"></a>
<a href="https://webring.hackclub.com/" id="nextBtn" class="webring-anchor" title="Next">›</a>
<script src="https://webring.hackclub.com/public/embed.min.js"></script>
</div>
```

Next, add your name (or nickname!) and URL where you placed the above code snippet at the file [members.json](members.json).

```javascript
{
"member": "Your Name",
"url": "https://yourwebsite.com"
}
```

Open a pull request ([tutorial here](https://github.com/hackclub/hackclub/blob/main/CONTRIBUTING.md#making-a-pull-request)!) and we'll review it within the next 48 hours. Cheers!
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

14 changes: 14 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// @ts-check
import { defineConfig } from "astro/config";
import tailwindcss from "@tailwindcss/vite";

import vercel from "@astrojs/vercel";

// https://astro.build/config
export default defineConfig({
vite: {
plugins: [tailwindcss()],
},

adapter: vercel(),
});
Loading