Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/valnub/framework7-authentication-demo
Example code for my Framework7 auth tutorial with Firebase
https://github.com/valnub/framework7-authentication-demo
authentication css firebase framework7 html javascript tutorial
Last synced: 30 days ago
JSON representation
Example code for my Framework7 auth tutorial with Firebase
- Host: GitHub
- URL: https://github.com/valnub/framework7-authentication-demo
- Owner: valnub
- Created: 2019-08-21T07:08:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-31T20:01:12.000Z (2 months ago)
- Last Synced: 2024-10-31T21:17:12.575Z (2 months ago)
- Topics: authentication, css, firebase, framework7, html, javascript, tutorial
- Language: JavaScript
- Size: 2.18 MB
- Stars: 10
- Watchers: 1
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# framework7-authentication-demo
This is the source code for my tutorial video on [how to signup, login and logout users in Framework7 using Firebase](framework7-authentication-demo).
My blog: http://www.timo-ernst.net
My twitter: http://www.twitter.com/timo_ernst
## NPM Scripts
* `npm start` - run development server
* `npm run build-prod` - build web app for production
* `npm run build-dev` - build web app using development mode (faster build without minification and optimization)## WebPack
There is a webpack bundler setup. It compiles and bundles all "front-end" resources. You should work only with files located in `/src` folder. Webpack config located in `build/webpack.config.js`.
Webpack has specific way of handling static assets (CSS files, images, audios). You can learn more about correct way of doing things on [official webpack documentation](https://webpack.js.org/guides/asset-management/).