https://github.com/ngodingbang/push-notification
Create a simple push notification on a web based on this tutorial:
https://github.com/ngodingbang/push-notification
html javascript push-notifications web
Last synced: about 1 month ago
JSON representation
Create a simple push notification on a web based on this tutorial:
- Host: GitHub
- URL: https://github.com/ngodingbang/push-notification
- Owner: ngodingbang
- License: mit
- Created: 2024-07-04T13:48:31.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-06T03:12:57.000Z (almost 2 years ago)
- Last Synced: 2025-02-25T08:37:52.840Z (over 1 year ago)
- Topics: html, javascript, push-notifications, web
- Language: TypeScript
- Homepage: https://www.youtube.com/playlist?list=PL62km_yqC3ZF5Dh9vFdjjRxvn1xQKqj4B
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# NgodingBang Push Notification with Bun runtime
Create a simple push notification on a web based on this tutorial: https://www.youtube.com/playlist?list=PL62km_yqC3ZF5Dh9vFdjjRxvn1xQKqj4B.
## Installation
To get started using this app, simply paste this command into your terminal:
```bash
bun install
bunx prisma migrate dev # migrate database
```
## Development
To start the development server run:
### API
```bash
bun run api:dev
bun run api:dev:secure # run server using https
```
Open http://localhost:3000 (or another port based on the .env configuration) with your browser to see the result.
### Web
```bash
bun run web:dev
bun run web:dev:secure # run server using https
```
Open http://localhost:3001 (or another port based on the .env configuration) with your browser to see the result.