spotube/website
Alessio fece073def This pull request primarily involves the removal of several configuration files and assets, as well as minor updates to documentation. The most significant changes are the deletion of various .vscode configuration files and the removal of unused assets from the project.
Configuration File Removals:

    .vscode/c_cpp_properties.json: Removed the entire configuration for C/C++ properties.
    .vscode/launch.json: Removed the Dart launch configurations for different environments and modes.
    .vscode/settings.json: Removed settings related to CMake, spell checking, file nesting, and Dart Flutter SDK path.
    .vscode/snippets.code-snippets: Removed code snippets for Dart, including PaginatedState and PaginatedNotifier templates.
    .vscode/tasks.json: Removed the tasks configuration file.

Documentation Updates:

    CONTRIBUTION.md: Removed heart emoji from the introductory text.
    README.md: Updated the logo image and made minor text adjustments, including removing emojis and updating section titles. [1] [2] [3] [4] [5]

Asset Removals:

    lib/collections/assets.gen.dart: Removed multiple unused asset references, including images related to Spotube logos and banners. [1] [2] [3]

Minor Code Cleanups:

    cli/commands/build/linux.dart, cli/commands/build/windows.dart, cli/commands/translated.dart, cli/commands/untranslated.dart: Adjusted import statements for consistency. [1] [2] [3] [4]
    integration_test/app_test.dart: Removed an unnecessary blank line.
    lib/collections/routes.dart: Commented out the TrackRoute configuration.
2025-04-13 18:40:37 +02:00
..
posts website: publish from idea to impact 2024-12-22 23:12:12 +06:00
src website: remove playstore button 2025-03-07 20:12:05 +06:00
static website: publish from idea to impact 2024-12-22 23:12:12 +06:00
tests website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
.eslintignore website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
.eslintrc.cjs website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
.gitignore website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
.node-version website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
.npmrc website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
.prettierignore website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
.prettierrc website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
package.json website: remove playstore button 2025-03-07 20:12:05 +06:00
playwright.config.ts website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
pnpm-lock.yaml downgrade: chose the path of ads 2024-12-13 00:17:19 +06:00
postcss.config.cjs website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
README.md website: fix older version download not working #1985 2024-10-13 10:44:05 +06:00
svelte.config.js fix: no spacing from the ads 2024-12-13 00:39:23 +06:00
tailwind.config.ts website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
tsconfig.json website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00
vite.config.ts website: new sveltekit based website (#1239) 2024-02-17 13:48:27 +06:00

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
pnpm create svelte@latest

# create a new project in my-app
pnpm create svelte@latest my-app

Developing

Once you've created a project and installed dependencies with pnpm install (or pnpm install or yarn), start a development server:

pnpm run dev

# or start the server and open the app in a new browser tab
pnpm run dev -- --open

Building

To create a production version of your app:

pnpm run build

You can preview the production build with pnpm run preview.

To deploy your app, you may need to install an adapter for your target environment.