Skip to content

Commit

Permalink
Add initial project files and configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlapse committed Dec 15, 2023
0 parents commit 6895c17
Show file tree
Hide file tree
Showing 16 changed files with 4,427 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# 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
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"tabWidth": 2,
"useTabs": false,
"plugins": ["prettier-plugin-tailwindcss", "prettier-plugin-astro"]
}
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"
}
]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"prettier.documentSelectors": ["**/*.astro"],
"[astro]": {
"editor.defaultFormatter": "astro-build.astro-vscode"
}
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Sehaj Pasricha Website
18 changes: 18 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { defineConfig } from "astro/config";

import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
integrations: [tailwind()],
redirects: {
twitter: "https://x.com/pasricha_sehaj",
x: "https://x.com/pasricha_sehaj",
discord: "https://discord.com/users/491548262768050191",
linkedin: "https://www.linkedin.com/in/sehajp",
github: "https://github.com/SehajDxstiny",
instagram: "https://www.instagram.com/sehaj._.p/",
email: "mailto:[email protected]",
spotify: "https://open.spotify.com/user/zyu7bvc2qpz9xstvs1847h7wl",
},
});
25 changes: 25 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "@theblapse/sehaj",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/check": "^0.3.2",
"@astrojs/tailwind": "^5.0.3",
"@fontsource/league-spartan": "^5.0.18",
"astro": "^4.0.5",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3"
},
"devDependencies": {
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.2",
"prettier-plugin-tailwindcss": "^0.5.9"
}
}
Loading

0 comments on commit 6895c17

Please sign in to comment.