Skip to content

Commit 05163e8

Browse files
committed
init astro framework
1 parent c693a03 commit 05163e8

12 files changed

+3333
-0
lines changed

.gitignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# build output
2+
dist/
3+
4+
# dependencies
5+
node_modules/
6+
7+
# logs
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
pnpm-debug.log*
12+
13+
14+
# environment variables
15+
.env
16+
.env.production
17+
18+
# macOS-specific files
19+
.DS_Store

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Expose Astro dependencies for `pnpm` users
2+
shamefully-hoist=true

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v17.1.0

.vscode/extensions.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Ignarus
2+
3+
[Astro](http://astro.build) is the framework that powers Ignarus.
4+
5+
## Getting Started
6+
7+
To get started, run the following in your terminal:
8+
9+
```bash
10+
pnpm install && pnpm dev
11+
```

astro.config.mjs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { defineConfig } from 'astro/config';
2+
3+
// https://astro.build/config
4+
export default defineConfig({});

package.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "ignarus",
3+
"type": "module",
4+
"version": "0.0.1",
5+
"author": {
6+
"name": "idioticdev",
7+
"email": "[email protected]"
8+
},
9+
"description": "Project Ignarus is a covert project being developed publicly.",
10+
"scripts": {
11+
"dev": "astro dev",
12+
"start": "astro dev",
13+
"build": "astro build",
14+
"preview": "astro preview",
15+
"astro": "astro"
16+
},
17+
"dependencies": {
18+
"astro": "^1.2.3"
19+
},
20+
"engines": {
21+
"node": ">=17.1.0"
22+
}
23+
}

0 commit comments

Comments
 (0)