Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ dist-ssr
*.njsproj
*.sln
*.sw?
.vercel
70 changes: 13 additions & 57 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,73 +1,29 @@
# Welcome to your Lovable project
# Screen Sampler

## Project info
A React + TypeScript app built with Vite, shadcn-ui, and Tailwind CSS.

**URL**: https://lovable.dev/projects/REPLACE_WITH_PROJECT_ID
## Development

## How can I edit this code?

There are several ways of editing your application.

**Use Lovable**

Simply visit the [Lovable Project](https://lovable.dev/projects/REPLACE_WITH_PROJECT_ID) and start prompting.

Changes made via Lovable will be committed automatically to this repo.

**Use your preferred IDE**

If you want to work locally using your own IDE, you can clone this repo and push changes. Pushed changes will also be reflected in Lovable.

The only requirement is having Node.js & npm installed - [install with nvm](https://github.com/nvm-sh/nvm#installing-and-updating)

Follow these steps:
Requires [bun](https://bun.sh/) to be installed.

```sh
# Step 1: Clone the repository using the project's Git URL.
git clone <YOUR_GIT_URL>
# Install dependencies
bun install

# Step 2: Navigate to the project directory.
cd <YOUR_PROJECT_NAME>
# Start dev server
bun run dev

# Step 3: Install the necessary dependencies.
npm i
# Build for production
bun run build

# Step 4: Start the development server with auto-reloading and an instant preview.
npm run dev
# Preview production build
bun run preview
```

**Edit a file directly in GitHub**

- Navigate to the desired file(s).
- Click the "Edit" button (pencil icon) at the top right of the file view.
- Make your changes and commit the changes.

**Use GitHub Codespaces**

- Navigate to the main page of your repository.
- Click on the "Code" button (green button) near the top right.
- Select the "Codespaces" tab.
- Click on "New codespace" to launch a new Codespace environment.
- Edit files directly within the Codespace and commit and push your changes once you're done.

## What technologies are used for this project?

This project is built with:
## Tech Stack

- Vite
- TypeScript
- React
- shadcn-ui
- Tailwind CSS

## How can I deploy this project?

Simply open [Lovable](https://lovable.dev/projects/REPLACE_WITH_PROJECT_ID) and click on Share -> Publish.

## Can I connect a custom domain to my Lovable project?

Yes, you can!

To connect a domain, navigate to Project > Settings > Domains and click Connect Domain.

Read more here: [Setting up a custom domain](https://docs.lovable.dev/features/custom-domain#custom-domain)
57 changes: 57 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"includes": ["**", "!!**/dist", "!!**/node_modules", "!!**/*.css"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 2,
"lineWidth": 120
},
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedVariables": "error",
"noUnusedImports": "error"
},
"style": {
"noUnusedTemplateLiteral": "warn",
"useConst": "error",
"noNonNullAssertion": "warn",
"useNodejsImportProtocol": "warn"
},
"a11y": {
"noStaticElementInteractions": "off",
"useKeyWithClickEvents": "off",
"noAriaUnsupportedElements": "warn",
"useButtonType": "warn"
},
"suspicious": {
"noArrayIndexKey": "off",
"useIterableCallbackReturn": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "single",
"jsxQuoteStyle": "double"
}
},
"assist": {
"enabled": true,
"actions": {
"source": {
"organizeImports": "on"
}
}
}
}
Binary file modified bun.lockb
Binary file not shown.
26 changes: 0 additions & 26 deletions eslint.config.js

This file was deleted.

2 changes: 0 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- TODO: Set the document title to the name of your application -->
<title>Screen Sampler v1.0</title>
<meta name="description" content="Screen Sampler v1.0 by Evan Roth" />
<meta name="author" content="Evan Roth" />

<!-- TODO: Update og:title to match your application name -->
<meta property="og:title" content="Screen Sampler v1.0" />
<meta property="og:description" content="Screen Sampler v1.0" />
<meta property="og:type" content="website" />
Expand Down
Loading