Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/FLiotta/Tiquet
Project management tool inspired in the kanban methodology made in React, Python, Flask and PostgreSQL.
https://github.com/FLiotta/Tiquet
flask hacktoberfest javascript kanban-methodology postgresql python react redux sqlalchemy typescript
Last synced: about 1 month ago
JSON representation
Project management tool inspired in the kanban methodology made in React, Python, Flask and PostgreSQL.
- Host: GitHub
- URL: https://github.com/FLiotta/Tiquet
- Owner: FLiotta
- License: mit
- Created: 2020-07-26T04:09:07.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T23:47:27.000Z (about 2 years ago)
- Last Synced: 2023-03-07T20:29:51.347Z (almost 2 years ago)
- Topics: flask, hacktoberfest, javascript, kanban-methodology, postgresql, python, react, redux, sqlalchemy, typescript
- Language: TypeScript
- Homepage: https://tiquetapp.herokuapp.com/
- Size: 4.85 MB
- Stars: 94
- Watchers: 7
- Forks: 20
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TIQUET
Tiquet is an open source project management tool focused on the kanban methodology.
## Instalation
#### Requirements to run this project.
- **NodeJS** 12.18.3
- **Python** 3.8.1
- **PostgreSQL** 11.9#### How to initialize the project
Initialize server environment, install client and server dependencies.
```
../project_dir$ bash initialize_dev.sh
```#### How to start the application in development
You can execture the start_dev bash on the project folder to initialize both at the same time.
```
../project_dir$ bash start_dev.sh
```But if you rather to start them independiently.
```
../project_dir/client$ npm start
``````
../project_dir/server$ source env/scripts/activate
$ python run.py
```