Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgegorka/svelte-firebase
A template to help you start developing SPAs with Svelte and Firebase.
https://github.com/jorgegorka/svelte-firebase
hacktoberfest
Last synced: about 1 month ago
JSON representation
A template to help you start developing SPAs with Svelte and Firebase.
- Host: GitHub
- URL: https://github.com/jorgegorka/svelte-firebase
- Owner: jorgegorka
- Created: 2019-06-15T11:31:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-02T19:41:22.000Z (about 1 year ago)
- Last Synced: 2024-08-03T11:09:38.563Z (5 months ago)
- Topics: hacktoberfest
- Language: Svelte
- Homepage:
- Size: 2.49 MB
- Stars: 231
- Watchers: 8
- Forks: 52
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Svelte - Firebase
A free template that you can use to create new applications using Svelte and Firebase.
You can see a live demo here: [https://svelte-firebase-template.web.app/](https://svelte-firebase-template.web.app/)
## Features
- Powerfull routing system with nested layouts.
- Public and Private sections
- Form validation
- Preconfigured pages for Home, Login, Signup and more...
- Secure your database with Firebase rules
- Fully resposive theme
- And many more...## Usage
Grab a copy of the template and install the dependencies:
```bash
git clone https://github.com/jorgegorka/svelte-firebase my-app-name
cd my-app-name && yarn install
```Add your Firebase configuration info to
_src/config/settings.js_If you don't have a Firebase project you can create one in the
[Firebase website](https://firebase.google.com/)Activate cloud firestore, storage and hosting in the Firebase console
```javascript
const config = {
apiKey: '',
authDomain: '',
databaseURL: '',
projectId: '',
storageBucket: '',
messagingSenderId: ''
}
```**Update .firebaserc with your project ID**
Install all the dependencies required by functions.
```bash
cd functions
npm i
```Now we want to deploy all the rules, indexes and cloud functions to Firebase.
```bash
yarn deploy
```This first first deployment will setup Firebase so everything is ready for development.
### Development
Launch the development server
```bash
yarn dev
```Visit [http://localhost:5000](http://localhost:5000)
To add new pages edit the routes files at _src/lib/routes_
There are public and protected routes. Protected routes require the visitor to be authenticated before accesing them.
There are two complete CRUD examples: Teams and Employees.
### Deployment
Rembember to activate cloud firestore, storage and hosting in the Firebase console before deploying for the first time.
```bash
yarn deploy
```Enjoy
## Contribute
Your comments, suggestions and improvements are [very welcome](https://github.com/jorgegorka/svelte-firebase/issues).
## Credits
Svelte-Firebase has been created by [Jorge Alvarez](https://www.alvareznavarro.es).
## License
[Released under MIT license](http://www.opensource.org/licenses/MIT)