mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-10-29 19:29:11 +00:00
Portfolio website in Svelte, SvelteKit, Tailwind and shadcn-svelte.
Bumps [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) from 13.4.5 to 13.4.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/commits/v13.4.6/packages/eslint-config-next) --- updated-dependencies: - dependency-name: eslint-config-next dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> |
||
|---|---|---|
| .github | ||
| .husky | ||
| app | ||
| assets/fonts | ||
| components | ||
| config | ||
| lib | ||
| public | ||
| styles | ||
| types | ||
| .commitlintrc.json | ||
| .depcheckrc | ||
| .editorconfig | ||
| .env.example | ||
| .eslintrc.json | ||
| .gitignore | ||
| .prettierignore | ||
| env.mjs | ||
| LICENSE | ||
| next.config.js | ||
| package.json | ||
| pnpm-lock.yaml | ||
| postcss.config.js | ||
| README.md | ||
| renovate.json | ||
| tailwind.config.js | ||
| tsconfig.json | ||
hellob.art
a simple portfolio
Installation
To install the project and its dependencies, follow these steps:
-
Ensure you have
pnpminstalled on your system. If not, you can install it by running:npm install -g pnpm -
Run the following command to install the project dependencies:
pnpm install
Environment Variables
After setting up the required services, you need to set the corresponding environment variables in the /.env file. To do this, follow these steps:
-
Make a copy of the
.env.examplefile:cp .env.example .env -
Open the
.envfile in a text editor and populate the values for the services mentioned above.
Build
To build the project, execute the following command:
pnpm build
Run
To run the project locally, use the following command:
pnpm run dev