https://github.com/echobind/recipe-app
https://github.com/echobind/recipe-app
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/echobind/recipe-app
- Owner: echobind
- Created: 2021-03-20T15:18:24.000Z (about 5 years ago)
- Default Branch: development
- Last Pushed: 2021-11-19T17:19:55.000Z (over 4 years ago)
- Last Synced: 2025-09-30T02:51:56.192Z (9 months ago)
- Language: TypeScript
- Homepage:
- Size: 2.02 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Next Template
Basic template for new applications.
### Deployments
Our base branch is `development`, which deploys to dev on merge. Our production branch is `production`, which deploys to production on merge.
To deploy, simply kick off the [deploy workflow](https://github.com/echobind/recipe-app/actions/workflows/deploy.yml).
To see what changes are currently in dev and have not been deployed, [compare development and production](https://github.com/echobind/recipe-app/compare/production...development).
### Tech stack
* [NextJS](https://nextjs.org/)
* [Vercel](https://vercel.com/)
* [Tailwind](https://styled-system.com/getting-started/)
* [TypeScript](https://www.typescriptlang.org/)
* [ESlint](https://eslint.org/)
### Contributing
GitHub actions are kicked off on every push to a branch to verify that tests, coverage, and lint is passing. This check must pass before a PR can be merged.
Add the `.env` file with the necessary secrets locally.
To run the site locally:
```yarn dev```
To run ci:
```yarn ci```
To run lint:
```yarn lint```
To run TS:
```yarn ts:check```