Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aeswibon/wd301
https://github.com/aeswibon/wd301
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aeswibon/wd301
- Owner: aeswibon
- Created: 2022-03-07T13:06:53.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-25T14:38:55.000Z (over 2 years ago)
- Last Synced: 2024-04-17T01:03:48.593Z (9 months ago)
- Language: TypeScript
- Homepage:
- Size: 442 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WD301 Course Project
## Form Builder Project
✅ User Authentication using API \
✅ CRUD operations on form using APIn\
✅ Form Builder with text, dropdown, multiselect, radio and location picker as form fields \
✅ Preview Manager to fill the data in the form fields \
✅ Submission View to check the number of submission of each form**Note:** The API used for all the major operations is [Coronasafe API](https://tsapi.coronasafe.live/swagger/?format=openapi) whose documentation can be found on [Coronasafe Swagger](https://tsapi.coronasafe.live/swagger/)
## Accounts
- For user authentication using API, sign up on [Coronasafe course_api](https://tsapi.coronasafe.live/).
- For using Sentry for checking issues related to project, sign up on [Sentry](https://sentry.io) and include the `dsn key` in `.env.production` file as `REACT_APP_SENTRY_DSN=`.## Setting Up the Project
```bash
# install all the dependencies
yarn install# start the development server
yarn start# launch the test runner
yarn test# build the app for production to the build folder
yarn build```