A progressive web app to display the angle bisector of two angles given by zodiac sign, degrees and minutes.
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update documentation

Signed-off-by: Release-Candidate <rec@gmx.at>

+8 -6
+5 -3
README.md
··· 13 13 14 14 ## Usage 15 15 16 + Install all development dependencies using `npm`: 17 + 16 18 ```bash 17 19 % npm install --save-dev 18 20 ``` ··· 21 23 22 24 In the project directory, you can run: 23 25 24 - - `npm run dev` - Runs the app in the development mode. Open [http://localhost:5173](http://localhost:5173) to view it in the browser. 26 + - `npm run dev` - Runs the app in the development mode. Open [https://localhost:5173](https://localhost:5173) to view it in the browser. Only works with certificate files `../https_cert-key.pem` and `../https_cert.pem`. See [./vite.config.ts](./vite.config.ts): 25 27 - `npm run build` - Builds the app for production to the `./http` folder. To be used with a local `npm run preview`. 26 28 - `npm run build-github` - Builds the app for production and hosting at GitHub pages to the `./http` folder. 27 29 - `npm run preview` - Run the app in production mode. Open [https://localhost:4173](https://localhost:4173) to view it in the browser. Only works with certificate files `../https_cert-key.pem` and `../https_cert.pem`. See [./vite.config.ts](./vite.config.ts): ··· 29 31 ```javascript 30 32 server: { 31 33 https: { 32 - key: fs.readFileSync("../https_cert-key.pem"), 33 - cert: fs.readFileSync("../https_cert.pem"), 34 + key: fs.readFileSync("../localhost_https_cert-key.pem"), 35 + cert: fs.readFileSync("../localhost_https_cert.pem"), 34 36 }, 35 37 }, 36 38 ```
+1 -1
public/manifest.json
··· 8 8 "display": "standalone", 9 9 "theme_color": "#bfab91", 10 10 "background_color": "#bfab91", 11 - "version": "0.0.0", 11 + "version": "0.1.0", 12 12 "description": "Bisectriz,an angle bisecting app.", 13 13 "icons": [ 14 14 {
+2 -2
vite.config.ts
··· 47 47 PWA_SERVER_PATH: JSON.stringify(pwaServerPath), 48 48 }, 49 49 server: { 50 - host: "192.168.0.100", 50 + host: "localhost", 51 51 https: { 52 52 key: fs.readFileSync("../localhost_https_cert-key.pem"), 53 53 cert: fs.readFileSync("../localhost_https_cert.pem"), ··· 55 55 }, 56 56 preview: { 57 57 port: 4173, 58 - host: "192.168.0.100", 58 + host: "localhost", 59 59 https: { 60 60 key: fs.readFileSync("../localhost_https_cert-key.pem"), 61 61 cert: fs.readFileSync("../localhost_https_cert.pem"),