https://github.com/psurkov/issue-tracker
Project for Tinkoff fintech
https://github.com/psurkov/issue-tracker
flask flask-login python3 sqlite3
Last synced: 11 months ago
JSON representation
Project for Tinkoff fintech
- Host: GitHub
- URL: https://github.com/psurkov/issue-tracker
- Owner: psurkov
- Created: 2021-01-13T19:05:29.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-01-15T16:11:50.000Z (almost 5 years ago)
- Last Synced: 2025-01-12T10:09:25.083Z (12 months ago)
- Topics: flask, flask-login, python3, sqlite3
- Language: Python
- Homepage:
- Size: 107 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Issue tracker
It's a simple issue tracker developed with Flask and SQLite. Users have to create an account. Then they can create issues, comment on them or close them if necessary.


## Install
```bash
pip3 install flask, flask_login, flask_sqlalchemy
git clone https://github.com/psurkov/Issue-tracker.git
cd Issue-tracker
```
## Use
Type `flask run` to start application. You will see a link such as http://127.0.0.1:5000/ then follow it.
You need to sign up or sign in to create issues and comment on them. Two accounts have already been created. Alice's account `alice@gmail.com` with the password `qwerty` and Bob's `bob@gmail.com` with the password `12345`. You can sign in with one of them or create your own.
If you want to clear the database just delete `sqlite.db` from root and restart the application.