Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gambhirsharma/appwrite-todolist
sticky note
https://github.com/gambhirsharma/appwrite-todolist
Last synced: 8 days ago
JSON representation
sticky note
- Host: GitHub
- URL: https://github.com/gambhirsharma/appwrite-todolist
- Owner: gambhirsharma
- Created: 2024-07-26T05:33:55.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-27T02:02:40.000Z (4 months ago)
- Last Synced: 2024-07-27T23:46:17.450Z (4 months ago)
- Language: TypeScript
- Homepage: https://notes.gambhir.us
- Size: 48.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sticker notes
##### **Tech used:**
1. React + TypeScript
2. Bun.js
3. Appwrite
4. Nginx
5. AWS EC2##### Deployment steps:
Follow this [Blog](https://quicktuts.online/blog/deploying-bun-app-ec2-nginx) | [Video](https://www.youtube.com/watch?v=7rlLkgMsExc)
**Nginx part:**
- Add this code to: `/etc/nginx/sites-available/default`
```default
server {
listen 80;
server_name _;location / {
proxy_pass http://localhost:5173;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
```