Skip to content

Commit da5eb34

Browse files
committed
update code
1 parent a602d3d commit da5eb34

5 files changed

Lines changed: 140 additions & 234 deletions

File tree

.env.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MONGO_URI=mongodb://localhost:27017/
1+
MONGO_URI=mongodb://admin:1234@127.0.0.1:27017/?retryWrites=true&w=majority

README.md

Lines changed: 37 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ It supports:
2828
- Copy-to-clipboard button
2929
- Delete confirmation popup
3030

31-
This project is perfect for learning **Flask**, **MongoDB**, **Web UI design**, and **clean backend development**.
32-
3331
---
3432

3533
## 🚀 Features
@@ -98,37 +96,43 @@ def generate_code(length=6):
9896
📁 Project Folder Structure
9997

10098
```text
99+
├── CHANGELOG.md
100+
├── LICENSE
101+
├── README.md
102+
├── app/
103+
│ ├── __init__.py
104+
│ ├── admin.py
105+
│ ├── api/
106+
│ │ ├── __init__.py
107+
│ │ └── fast_api.py
108+
│ ├── app.py
109+
│ ├── assets/
110+
│ │ └── images/
111+
│ ├── cli.py
112+
│ ├── db/
113+
│ │ ├── __init__.py
114+
│ │ └── data.py
115+
│ ├── qr.py
116+
│ ├── static/
117+
│ │ ├── images/
118+
│ │ │ ├── logo.png
119+
│ │ └── style.css
120+
│ ├── templates/
121+
│ │ ├── admin.html
122+
│ │ ├── coming-soon.html
123+
│ │ ├── index.html
124+
│ │ └── recent.html
125+
│ └── utils/
126+
│ ├── __init__.py
127+
│ ├── helper.py
128+
│ └── lint.py
129+
├── mypy.ini
130+
├── package.json
131+
├── poetry.lock
132+
├── pyproject.toml
133+
├── requirements.txt
134+
└── tiny.code-workspace
101135
102-
Directory structure:
103-
└── tiny/
104-
├── CHANGELOG.md
105-
├── LICENSE
106-
├── README.md
107-
├── app/
108-
│ ├── __init__.py
109-
│ ├── app.py
110-
│ ├── assets/
111-
│ │ └── images/
112-
│ │ ├── Dark_mode.png
113-
│ ├── cli.py
114-
│ ├── database.py
115-
│ ├── models.py
116-
│ ├── static/
117-
│ │ ├── images/
118-
│ │ │ ├── logo.png
119-
│ │ │ └── url_shortener_bg.jpg
120-
│ │ └── style.css
121-
│ └── templates/
122-
│ ├── admin.html
123-
│ └── index.html
124-
├── package.json
125-
├── pyproject.toml
126-
└── poetry.lock
127-
├── requirements.txt
128-
└── tiny.code-workspace
129-
└── .gitignore
130-
└── .flake8
131-
└── .env
132136
```
133137

134138
⚙️ How to Run the Project Locally
@@ -137,7 +141,7 @@ Directory structure:
137141

138142
```sh
139143
poetry install
140-
poetry install --all-extras
144+
poetry install --all-extras --with dev
141145
```
142146

143147
create `.env` file and add content from `.env.local` file anc change value according to your project

app/admin.py

Lines changed: 0 additions & 104 deletions
This file was deleted.

0 commit comments

Comments
 (0)