Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.13 KB

README.md

File metadata and controls

43 lines (31 loc) · 1.13 KB

Portfolio

My personal portfolio website made with Svelte and Tailwind.

# git clone
git clone [email protected]/Shaamallow/portfolio.git
cd portfolio
npm install

The Stack

Developing

Once 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 -- --open

Building

To 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-node

Then 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.