https://github.com/wasabina67-org/todolist-flask
Todolist app using Flask
https://github.com/wasabina67-org/todolist-flask
devcontainer docker-compose flask https-portal redis todolist-app vue3
Last synced: about 2 months ago
JSON representation
Todolist app using Flask
- Host: GitHub
- URL: https://github.com/wasabina67-org/todolist-flask
- Owner: wasabina67-org
- License: mit
- Created: 2024-08-22T03:48:53.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T14:47:25.000Z (8 months ago)
- Last Synced: 2025-01-11T17:12:12.131Z (4 months ago)
- Topics: devcontainer, docker-compose, flask, https-portal, redis, todolist-app, vue3
- Language: Python
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# todolist-flask
Todolist app using Flasktodolist_flask.mp4
## Setup
```bash
alembic upgrade head
```## Run
```bash
python src/app.py
```Open http://localhost:3000/ or https://localhost:3443/
## pytest
```bash
pytest .
```## Customizing Flask and Vue3 Delimiters
```python
app = Flask(__name__)
app.jinja_env.variable_start_string = '[['
app.jinja_env.variable_end_string = ']]'
``````javascript
const app = Vue.createApp({
delimiters: ['[[', ']]'],
data() {
```