Status: Work in Progress.
This application is powered by:
Install the dependencies...
then..
npm install
npm run dev
To create an optimised version of the app:
npm run build
After executing "npm run build", login to Firebase CLI using "firebase login". Then initialize Firebase Hosting using "firebase init". It is assumed that you have firebase-tools in your directory by now. If you have more than 1 project under your Firebase account, use "firebase add" to select the preferred one. Select the features to be included in the hosting - for this, use Firestore and Firebase Hosting only.
*IMPORTANT TIP: Do not allow Firebase Hosting to create a new "index.html" for you. We will use the default index.html in this project. If you do, Firebase Hosting will replace your website with it's default fallback page. You dont want that. Also, do not allow Firebase Hosting to create a 404.html file for you since we are using RoutifyJS. RoutifyJS has its own version of '404.html' by a file called '_fallback.svelte' under "src/pages/_fallback.svelte".