Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🕹️🚵🏻 ↝ Microservice init for inventory bagsy #9

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

.venv
/.venv
venv
/venv

# Runtime data
pids
*.pid
Expand Down Expand Up @@ -68,4 +73,4 @@ yarn.lock
.yarn-integrity

# Secrets
.env.development
.env.development
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

8 changes: 8 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from flask import Flask
from flask_sqlalchemy import SQLAlchemy

db = SQLAlchemy()
app = Flask(__name__)

app.config["SQLALCHEMY_DATABASE_URI"] = ""
db.init_app(app)
88 changes: 0 additions & 88 deletions assets/app.css

This file was deleted.

1 change: 0 additions & 1 deletion assets/custom.css

This file was deleted.

Loading