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

https://github.com/training360/python-ci-training-2024-11-12

Python CI/CD képzés
https://github.com/training360/python-ci-training-2024-11-12

coursework python

Last synced: 10 months ago
JSON representation

Python CI/CD képzés

Awesome Lists containing this project

README

          

# Employee application

This is a Python web application with Flask, managing employees.

* Language: Python 3
* Framework: Flask
* Web application
* VCS: GitHub

Employee entity has an id and a name.

This application has a HTML UI and a REST API.

Use Postgresql.

```sh
docker run -d -e POSTGRES_DB=employees -e POSTGRES_USER=employees -e POSTGRES_PASSWORD=employees -p 5432:5432 --name employees-postgres postgres
```

```python
print("Hello World")
```