Front-end example project for fictional bowling business
Live site - https://avi-bowling.edburtnieks.now.sh/
cd
into itgit checkout staging
npm install
To open development server localy run npm run dev
and visit localhost:3000
To build the project for production run npm run build
To open production server localy run npm start
To check linting errors run npm run lint
staging
branch git branch
git checkout -b <branch-name>
git add <files>
git commit
git push origin <branch-name>
staging
and compare branch as <branch-name>
To get latest code changes locally run git pull origin staging
while on staging
or <branch-name>
branch
To add all production ready features to master branch create new pull request on GitHub setting base branch as master
and compare branch as staging
To deploy production ready code to live site run now
To test with cypress run npm run cy:open
or npm run cy:run
New tests can be added in cypress/integration directory
Project documentation, Structure, Guidelines
Project boilerplate was generated using npx degit sveltejs/template
command