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
- Host: GitHub
- URL: https://github.com/training360/python-ci-training-2024-11-12
- Owner: Training360
- Created: 2024-11-28T20:20:15.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-28T20:30:07.000Z (over 1 year ago)
- Last Synced: 2025-03-27T10:17:29.582Z (about 1 year ago)
- Topics: coursework, python
- Language: Python
- Homepage:
- Size: 1010 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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")
```