Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```