diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6264927..4afb7ca 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,12 +6,10 @@ "image": "mcr.microsoft.com/devcontainers/base:debian", "features": { "ghcr.io/shyim/devcontainers-features/bun:0": {}, - "ghcr.io/devcontainers/features/git-lfs:1": {} + "ghcr.io/devcontainers/features/git-lfs:1": {}, + "ghcr.io/devcontainers/features/node:1": {} }, - // Features to add to the dev container. More info: https://containers.dev/features. - // "features": {}, - // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], diff --git a/readme.md b/readme.md index 59d4fb0..a27552d 100644 --- a/readme.md +++ b/readme.md @@ -38,5 +38,5 @@ ahora miralo en el sitio: ``` cd sitio/ bun install -bun --bun dev +bun dev ``` diff --git a/sitio/README.md b/sitio/README.md deleted file mode 100644 index 5ce6766..0000000 --- a/sitio/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# create-svelte - -Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte). - -## Creating a project - -If you're seeing this, you've probably already done this step. Congrats! - -```bash -# create a new project in the current directory -npm create svelte@latest - -# create a new project in my-app -npm create svelte@latest my-app -``` - -## Developing - -Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: - -```bash -npm run dev - -# or start the server and open the app in a new browser tab -npm run dev -- --open -``` - -## Building - -To create a production version of your app: - -```bash -npm run build -``` - -You can preview the production build with `npm run preview`. - -> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.