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
49 changes: 1 addition & 48 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,48 +1 @@
# 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).
# my website
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion src/data/project/ascii.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Image to ASCII Converter",
"description": "Tool for converting image data into plain text, written in python.",
"img": "/src/assets/project/ascii.png",
"img": "/public/project/ascii.png",
"url": "https://www.github.com/justinac0/image-ascii"
}
2 changes: 1 addition & 1 deletion src/data/project/bible-study.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Bible Webapp",
"description": "Basic bible app using the ESV api.",
"img": "/src/assets/project/bible.png",
"img": "/project/bible.png",
"url": "https://github.com/justinac0/bible-study-basic"
}
2 changes: 1 addition & 1 deletion src/data/project/capstone.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Physics Capstone (Monte Carlo)",
"description": "Monte carlo simulation of water diffusion in articular cartilage.",
"img": "/src/assets/project/0_10128_diffuse.png",
"img": "/project/0_10128_diffuse.png",
"url": "https://www.github.com/justinac0/BulkWaterDiffuse"
}
2 changes: 1 addition & 1 deletion src/data/project/collagen.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Diffusion of Water in Collagen",
"description": "Proof of concept simulation of bulk water diffusion inside a collagen fibre network (in the radial zone).",
"img": "/src/assets/project/collagen.gif",
"img": "/project/collagen.gif",
"url": "https://www.github.com/justinac0/CollagenPrototype"
}
2 changes: 1 addition & 1 deletion src/data/project/conway.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Conways Game of Life",
"description": "Just a simple implementation of conways game of life.",
"img": "/src/assets/project/life.gif",
"img": "/project/life.gif",
"url": "https://github.com/justinac0/raylib-game-of-life"
}
2 changes: 1 addition & 1 deletion src/data/project/nokia-screen.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"title": "IoT Renderer",
"description": "3D wireframe cube software rendered, this was ported to an IoT device for a university assessment.",
"img": "/src/assets/project/cube.gif"
"img": "/project/cube.gif"
}
2 changes: 1 addition & 1 deletion src/data/project/polar.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Polarisation Visualisation",
"description": "A visualisation of light polarisation, my main focus was to investigate the 3 polarisation case to observe light intensity.",
"img": "/src/assets/project/3polar.gif",
"img": "/project/3polar.gif",
"url": "https://www.github.com/justinac0/polar"
}
2 changes: 1 addition & 1 deletion src/data/project/raycaster.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Raycaster",
"description": "Program that displays a basic visualisation of the raycasting process.",
"img": "/src/assets/project/raycaster.gif",
"img": "/project/raycaster.gif",
"url": "https://www.github.com/justinac0/raylib-raycaster"
}
2 changes: 1 addition & 1 deletion src/data/project/rtw.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "Ray Tracer",
"description": "Graphics shader programming tool.",
"img": "/src/assets/project/rtweekend_1.gif",
"img": "/project/rtweekend_1.gif",
"url": "https://www.github.com/justinac0/shady"
}
2 changes: 1 addition & 1 deletion src/data/project/xrd.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "X-Ray Diffraction Analysis",
"description": "A tool for determining lattice constants of single crystal cubic structures. This project was created to automate the data analysis of Powder XRD sample data for an assessment.",
"img": "/src/assets/project/xrd.png",
"img": "/project/xrd.png",
"url": "https://www.github.com/justinac0/scca"
}
Loading