Add .env.sample and bump version to 1.0.5#14
Merged
goldlabelapps merged 4 commits intomasterfrom Mar 20, 2026
Merged
Conversation
Add a .env.sample with environment variable placeholders for BASE_URL and Postgres connection (DB_HOST, DB_PORT=5432, DB_NAME, DB_USER, DB_PASSWORD). Update app __version__ from 1.0.4 to 1.0.5 to reflect the change.
There was a problem hiding this comment.
Pull request overview
Adds a sample environment file to make local/deploy configuration clearer and bumps the app version to reflect the change.
Changes:
- Added
.env.samplewith placeholders for BASE_URL and Postgres connection variables. - Bumped
app.__version__from1.0.4to1.0.5.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
app/__init__.py |
Updates the application version constant to 1.0.5. |
.env.sample |
Introduces a template for required environment variables (DB connection + BASE_URL). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -0,0 +1,6 @@ | |||
| BASE_URL= | |||
There was a problem hiding this comment.
BASE_URL is included in .env.sample, but there are no references to BASE_URL anywhere in the repository. Consider removing it from the sample file, or documenting where it is expected to be used (e.g., in README or upcoming code) to avoid confusing deployers about which variables are required.
Suggested change
| BASE_URL= |
Update package version in app/__init__.py from 1.0.5 to 1.0.6 to reflect the new release.
Include python-multipart>=0.0.20 in requirements.txt to support parsing multipart/form-data (e.g., file uploads) for web frameworks that require this dependency.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a .env.sample with environment variable placeholders for BASE_URL and Postgres connection (DB_HOST, DB_PORT=5432, DB_NAME, DB_USER, DB_PASSWORD). Update app version from 1.0.4 to 1.0.5 to reflect the change.