Portfolio website in Svelte, SvelteKit, Tailwind and shadcn-svelte.
Find a file
2023-06-14 17:15:06 +02:00
.github feat: added linting and dependencies workflow 2023-06-14 16:39:56 +02:00
.husky feat: added pre-commit hook for pretty-quick 2023-06-14 02:02:16 +02:00
app feat: reworked page and components 2023-06-14 16:33:08 +02:00
components feat: reworked page and components 2023-06-14 16:33:08 +02:00
config fix: resolved issues with external links 2023-06-14 17:08:14 +02:00
lib feat: reworked page and components 2023-06-14 16:33:08 +02:00
public chore: remove unused media files 2023-06-14 17:07:18 +02:00
types feat: reworked page and components 2023-06-14 16:33:08 +02:00
.commitlintrc.json feat: added config for commitlint 2023-06-14 02:01:08 +02:00
.depcheckrc feat: added configuration for depcheck 2023-06-14 16:38:42 +02:00
.editorconfig chore: added .editorconfig file 2023-06-14 02:24:07 +02:00
.eslintrc.json feat: initial setup for next app 2023-06-14 01:56:52 +02:00
.gitignore feat: initial setup for next app 2023-06-14 01:56:52 +02:00
.prettierignore chore: added ignore file for prettier 2023-06-14 02:47:44 +02:00
LICENSE docs: added GPLv3 license 2023-06-14 02:18:02 +02:00
next.config.js chore: change to "Strict Mode" in runtime 2023-06-14 02:27:38 +02:00
package.json Merge pull request #5 from bartvdbraak/initial-commit 2023-06-14 17:15:06 +02:00
pnpm-lock.yaml Merge pull request #5 from bartvdbraak/initial-commit 2023-06-14 17:15:06 +02:00
postcss.config.js style: fixes suggested by prettier 2023-06-14 17:12:18 +02:00
README.md fix: resolved issues with external links 2023-06-14 17:08:14 +02:00
renovate.json Add renovate.json 2023-06-14 00:51:48 +00:00
tailwind.config.js feat: add filter to backgroundImage 2023-06-14 03:48:37 +02:00
tsconfig.json feat: initial setup for next app 2023-06-14 01:56:52 +02:00

hellob.art

a simple portfolio

Installation

To install the project and its dependencies, follow these steps:

  1. Ensure you have pnpm installed on your system. If not, you can install it by running:

    npm install -g pnpm
    
  2. 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:

  1. Make a copy of the .env.example file:

    cp .env.example .env
    
  2. Open the .env file 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