Skip to content

Source code for my personal website

License

Notifications You must be signed in to change notification settings

ruancarllo/portfolio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository contains the source code for my personal portfolio, which was written in the TypeScript language, using Preact in its TSX-supported form, importing styles created in SCSS. To achieve this, the Vite framework was implemented, which is responsible for transpiling the scripts, and NPM, whose function is to handle external dependencies.

Initialization

To handle this project on a local machine, open a terminal in the source folder and install the necessary dependencies with the following commands:

cd source
npm install --package-lock=false

Distribution

Still in the source folder, it is possible to serve the website on the local network with:

npm run serve

Or even build a distributable package for the docs folder with:

npm run build