Skip to content
Merged
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
7 changes: 0 additions & 7 deletions .eslintrc.cjs

This file was deleted.

10 changes: 2 additions & 8 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '18.x'
node-version: '23.x'

- name: Get yarn cache
id: yarn-cache
Expand All @@ -34,15 +34,9 @@ jobs:
- run: yarn install --frozen-lockfile
- run: yarn build

- name: Start server and mirror it with wget
run: |
yarn start &
sleep 10 &&
wget --mirror http://localhost:3000 -P out --no-host-directories --page-requisites --adjust-extension

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out
publish_dir: ./dist
26 changes: 22 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
node_modules
# build output
dist/

/.cache
/build
/public/build
# 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/
51 changes: 48 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,48 @@
# justinac0 Website
This is the repo for my personal website.
*link:* https://justinac0.github.io/
# Astro Starter Kit: Basics

```sh
npm create astro@latest -- --template basics
```

[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)

> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!

![just-the-basics](https://github.com/withastro/astro/assets/2244813/a0a5533c-a856-4198-8470-2d67b1d7c554)

## 🚀 Project Structure

Inside of your Astro project, you'll see the following folders and files:

```text
/
├── public/
│ └── favicon.svg
├── src/
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ └── index.astro
└── package.json
```

To learn more about the folder structure of an Astro project, refer to [our guide on project structure](https://docs.astro.build/en/basics/project-structure/).

## 🧞 Commands

All commands are run from the root of the project, from a terminal:

| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |

## 👀 Want to learn more?

Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
5 changes: 0 additions & 5 deletions app/components/Copyright.tsx

This file was deleted.

22 changes: 0 additions & 22 deletions app/components/DefaultPageLayout.tsx

This file was deleted.

16 changes: 0 additions & 16 deletions app/components/GithubButton.tsx

This file was deleted.

5 changes: 0 additions & 5 deletions app/components/GoHome.tsx

This file was deleted.

23 changes: 0 additions & 23 deletions app/components/ImageViewer.tsx

This file was deleted.

11 changes: 0 additions & 11 deletions app/components/NavBar.tsx

This file was deleted.

43 changes: 0 additions & 43 deletions app/components/PortfolioItem.tsx

This file was deleted.

18 changes: 0 additions & 18 deletions app/entry.client.tsx

This file was deleted.

Loading
Loading