- Clone the repository:
$ git clone https://github.com/MatheusAlvesPereira/Portifolio.git
- run
pnpm install
ornpm install
- If you want to switch to npm make sure to remove pnpm-lock.yaml and node_modules folder and then run
npm install
All commands are run from the root of the project, from a terminal:
Command | Action |
---|---|
pnpm install |
Installs dependencies |
pnpm dev |
Starts local dev server at localhost:4321 |
pnpm build |
Build your production site to ./dist/ |
pnpm preview |
Preview your build locally, before deploying |
pnpm astro ... |
Run CLI commands like astro add , astro check |
pnpm astro -- --help |
Get help using the Astro CLI |
Inside of your Astro project, you'll see the following folders and files:
├── public/
├── src/
│ ├── components/
│ ├── content/
│ ├── layouts/
│ ├── locales/
│ ├── middleware/
│ ├── pages/
│ ├── styles/
│ ├── utils/
│ └── consts.ts/
│ └── env.d.ts/
├── .prettierrc
├── astro.config.mjs
├── CONTRIBUTING.md
├── LICENSE
├── package.json
├── pnpm-lock.yaml
├── README.md
├── tailwind.config.cjs
└── tsconfig.json
This project use the template Astro-starter
Check out Astro documentation