My personal portfolio website made with Svelte and Tailwind.
# git clone
git clone [email protected]/Shaamallow/portfolio.git
cd portfolio
npm installOnce you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --openTo deploy on server, target is the usual dockerfile for a node server and the adapter is @sveltejs/adapter-node.
Start by installing the adapter:
npm i -D @sveltejs/adapter-nodeThen change the adapter in svelte.config.js to @sveltejs/adapter-node
And finally use the dockerfile and the docker-compose file in the repository.
They are configured to run with the traefik reverse proxy.