Files
social-media/frontend
..
2025-04-19 03:49:27 -04:00
2025-04-19 03:49:27 -04:00
2025-02-17 22:35:04 -05:00
2025-01-16 00:27:05 -05:00
2025-01-16 00:27:05 -05:00
2025-04-23 17:53:18 -04:00
2025-04-23 17:53:18 -04:00
2025-04-19 01:56:59 -04:00
2025-02-10 23:46:53 -05:00
2025-02-13 00:38:38 -05:00
2025-04-19 01:56:59 -04:00

Hutopia

https://docs.google.com/document/d/1xY9KtOGBx80ICbwUJWReO4ZEOIvw_D4quMcRzZ-nMWo/edit?usp=sharing

Hutopia frontEnd. Using vue3 and vuetify3.

System Setup

Setup SSL certificates for localhost on your machine. Use the following commands to generate and store the certificates.

openssl genrsa -out localhost-key.pem 
openssl req -new -key localhost-key.pem -out csr.pem 
openssl x509 -req -days 365 -in csr.pem -signkey localhost-key.pem -out localhost.pem

VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).

Customize configuration

See Vite Configuration Reference.

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Compile and Minify for Production

npm run build