Visit the demo at svelte-admin-panel.web.app. Go ahead and create an accont for gaining access to the Components page (a fake email may be used, don't worry).
Install the dependencies...
cd svelte-admin-panel
npm install
...then start Rollup:
npm run dev
Navigate to localhost:8080. You should see the app running. Edit any file under /src
, and save it to see your changes. The page will reload automatically.
If you're using Visual Studio Code install the official extension Svelte for VS Code. If you are using other editors you may need to install a plugin in order to get syntax highlighting and intellisense.
This projetc is built using Firebase
Create a new project in your Firebase account. Enable Authentication with e-mail method, Firestore Database and Hosting.
For the Firestore rules, use our base sample at /filestoreRules.js
for basic access rules on the existing pages.
To create an optimised version of the app:
npm run build
You can run the newly built app with npm run start
. This uses sirv, which is included in the package.json's dependencies
.
Install firebase-tools if you haven't already:
npm install -g firebase-tools
Then, from within the project folder, log in to Firebase with your Google credentials and set the project:
firebase login
firebase use *project-id*
After that, you can go ahead and deploy the application to production with:
firebase deploy