Trixi is a task management webapp implemented using Python/Flask. It runs on Google App Engine.
Click here to see it in production.
This project is licensed under the MIT license, so you can do whatever you like with it, more or less.
Feel free to create pull-requests for improvements or new features.
Please note: I'll only deploy your code to production if I like what you've done and it's in the spirit of simplicity. If you're unsure, ask me first!
- Follow these instructions
- Install this package:
google-cloud-sdk-app-engine-python
gcloud init
To run use dev_appserver.py .
in project root.
- App is available on http://localhost:8080/
- Local Admin interface http://localhost:8000/instances
You can also clear datastore at start: dev_appserver.py --clear_datastore=yes app.yaml
To drop into local debugger, add import pdb; pdb.set_trace()
to set a breakpoint.
This invokes the Python debugger
- Deploy:
gcloud app deploy
. ENSURE THAT INDEXES ARE UP TO DATE! - List projects:
gcloud projects list
- Change project project:
gcloud init
If indexes changed, do this: gcloud datastore create-indexes index.yaml
, otherwise things get borked
New packages are installed to the lib
folder using the pip install -t lib <package-name>
command.