You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Start building your App from changing Kitchen Sink, or using a clean template.
Build
Framework7 uses gulp and rollup to build a development (build) and productuin (dist) versions.
First you need to have gulp-cli which you should install globally.
$ npm install --global gulp
Then install all dependencies, in repo's root:
$ npm install
And build development version of Framework7:
$ npm run build:dev
The result is available in build/ folder.
Dist/Release
To build production version of Framework7:
$ npm run build:prod
Production version will be available in dist/ folder.
Kitchen Sink
Kitchen Sink uses Ajax for navigation between pages so you will need a server.
Run Kitchen Sink with development environment (development version will be built first):
$ npm run dev
Run Kitchen Sink with production environment (configured to scripts and styles from dist/ folder):
$ npm run prod
Contributing
Before you open an issue please review the contributing guideline.
All changes should be commited to src/ files. Framework7 uses LESS for CSS compliations, and ES modules JS files.
The project uses .editorconfig to define the coding style of each file. We recommend that you install the Editor Config extension for your preferred IDE.