Update README.md for ssl certificate
This commit is contained in:
@@ -3,9 +3,18 @@
|
|||||||
## To Do Link :
|
## To Do Link :
|
||||||
https://docs.google.com/document/d/1xY9KtOGBx80ICbwUJWReO4ZEOIvw_D4quMcRzZ-nMWo/edit?usp=sharing
|
https://docs.google.com/document/d/1xY9KtOGBx80ICbwUJWReO4ZEOIvw_D4quMcRzZ-nMWo/edit?usp=sharing
|
||||||
|
|
||||||
|
|
||||||
Hutopia frontEnd. Using vue3 and vuetify3.
|
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.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
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
|
||||||
|
```
|
||||||
|
|
||||||
## Recommended IDE Setup
|
## Recommended IDE Setup
|
||||||
|
|
||||||
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
||||||
|
|||||||
Reference in New Issue
Block a user