This app helps trainees to track exercises and meals they have.
https://doloveworkout.com/login
first.mp4
second-.mp4
third.mp4
- ✅typescript
- ✅Create components and directories beforehand using Atomic design
- Define component name as well on figma
- ✅CI/CD for testing and deployment
- ✅Connection to Firebase for hosting and DB
- ✅Firebase for Auth
- Unit test using vitest and testing-library
- ✅tailwind-css
- ✅Daisy UI
- UX. Especially describe how to let users know what this app is for.
- ✅production and local envs
- ✅Use StoryBook
- ✅Swagger with spotlight
- ✅Dev-container(Dockerfile, devcontainer.json)
- ✅PWA
- ✅Get a google-domain
https://www.figma.com/file/7vvfcNq19fBDlVO3i7IVnv/WorkoutApp?node-id=7%3A604&t=3VBsrBVIwm4r6Wpi-1
git clone https://github.com/team-agile-div/toyota-wg3trip.git
npm ci
npm run local
Also, you can do it by running a build task with cmd + shift + b
Make sure to utilize the same Wifi as PC does
npm run local
- Take a note the url coming after
Network: ...
- type the url including a port number on the address bar.
npm run build
npm run storybook
# http://localhost:6006/?path=/story
Run Unit Tests with Vitest
npm run test:unit
Run End-to-End Tests with Playwright
# Install browsers for the first run
npx playwright install
# When testing on CI, must build the project first
npm run build
# Runs the end-to-end tests
npm run test:e2e
# Runs the tests only on Chromium
npm run test:e2e -- --project=chromium
# Runs the tests of a specific file
npm run test:e2e -- tests/example.spec.ts
# Runs the tests in debug mode
npm run test:e2e -- --debug
The path is /src/api/docs/openapi.yaml
Use Atomic design which helps developers to read code easily and also not to lose where to create component files and direcories.
Represent the basic building blocks of a design system. An example is a button or a text style.
A group of atoms working together as a unit. Molecules are tangible UI elements. For example, a button and text field can be grouped to create a search form.
Atoms and molecules working together in a complex structure. A search field grouped with a navigation bar forms a header organism on a website. Only this component can inherit from a same level of a organism component.
Page-level objects placing components into a layout that defines the content structure. For example, taking a header organism and placing it on a homepage template.
Instances of templates that represent the final product.
Run by GitHub Actions
Run by GitHub Actions