Skip to content

Commit

Permalink
Add snippet for deleting backend code
Browse files Browse the repository at this point in the history
  • Loading branch information
diamondburned committed Feb 24, 2024
1 parent 5d24211 commit 2abbc7e
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@

### This is a project template to help you create your first web application with. It comes with a simple routing setup and a couple of helper components, including one that should keep most of your content mobile friendly and a premade mobile friendly navbar.

# Screenshots 📸
## Screenshots 📸

<p float="left">
<img src="https://github.com/acmcsufoss/fullypack_sveltekit/assets/8463786/a82582a7-b5c9-4a14-bfa1-6dabe2bf12b0" height="300" />
<img src="https://github.com/acmcsufoss/fullypack_sveltekit/assets/8463786/4c7a2a3a-b354-4f8f-8cc5-9dd66a78c3e5" height="300" />
</p>

# Project Goals 🥅
## Project Goals 🥅

- Set up Sveltekit
- Run it on your local device
- Learn about Svelte components and how to reuse them
- Learn about Sveltekit routing

# How to use 🚀
## How to use 🚀

1. Use this template by clicking the ["Use this template"](https://github.com/acmcsufoss/fullypack_sveltekit/generate) button above
2. Make sure you have Node.js installed on your computer. To check, type `node -v` in your terminal. If you don't have it installed, you can download it on [Node.js](https://nodejs.org/en/download)
Expand All @@ -30,3 +30,12 @@
![image](https://user-images.githubusercontent.com/26943671/228970395-5fcbac1a-0bbc-436e-8945-27fb1a50c89e.png)

4. If you open the link, you will have a live preview of your site running on your local computer.

## Too complicated?

This repository contains a full-stack Sveltekit example! If you're looking for just the front-end, simply delete the backend code:

```sh
rm -r src/routes/api # delete the REST API
rm src/+page.server.ts # delete the server-side rendering code
```

0 comments on commit 2abbc7e

Please sign in to comment.