https://github.com/ourway/flask_sqlalchemy_docker_k8s_template
Flask + SQLAlchemy + Alembic + Docker Compose + Kubernetes
https://github.com/ourway/flask_sqlalchemy_docker_k8s_template
alembic docker-compose flask k8s postgresql sqlalchemy template
Last synced: 3 months ago
JSON representation
Flask + SQLAlchemy + Alembic + Docker Compose + Kubernetes
- Host: GitHub
- URL: https://github.com/ourway/flask_sqlalchemy_docker_k8s_template
- Owner: ourway
- Created: 2020-04-28T12:02:50.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-09-16T18:33:19.000Z (almost 4 years ago)
- Last Synced: 2025-01-14T22:43:08.517Z (over 1 year ago)
- Topics: alembic, docker-compose, flask, k8s, postgresql, sqlalchemy, template
- Language: Python
- Size: 90.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a project to learn Kubernetes in details.
This project provides basic components to quickly
onboard and will use as my personal template for later
projects from now on.
- Steps to create this project:
- After creating a `.gitignore` file, I used `git init`
- I am using pipenv, so `pipenv shell` gives me a venv
- pipenv inclusing two sections: dev and deploy
- dev section includes dev files like `black` or `ipython`
- A `pyproject.toml` is added to handle `black` configs.
- Usage:
- Please run the following commands:
```cosnole
cp .env.template .env
pipenv shell
pipenv clean
pipenv install --dev
```