-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Plugin v8 #1946
Plugin v8 #1946
Conversation
…nto master * 'plugins' of github.com:PostHog/posthog: push up ABC class * 'master' of github.com:PostHog/posthog: Update dockerfile for dev-ing (#1817)
* 'plugins' of github.com:PostHog/posthog: unlink symlink
* 'plugins' of github.com:PostHog/posthog: fix fix unlink even if link points to nothing
@Twixes I think I got all the points. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
plugins/package.json
Outdated
"license": "MIT", | ||
"private": true, | ||
"dependencies": { | ||
"posthog-plugin-server": "^0.0.6" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wonder if we should hard-pin this version to avoid incompatibility when we change posthog-plugin-server later on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We do use the .lock
-file when installing the packages in this folder, but it can't hurt to be even stricter. Done.
dev.Dockerfile
Outdated
@@ -21,6 +21,7 @@ RUN mkdir /code/requirements/ | |||
COPY requirements/dev.txt /code/requirements/ | |||
RUN pip install -r requirements/dev.txt --compile | |||
|
|||
COPY posthog.json /code/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trying to build locally failed because this file didn't exist. It's also not in any of the other docker files but could be on purpose
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hum, that didn't make sense indeed. Just a few lines later with COPY . /code/
it gets copied anyway. Removed.
…esn't exist, copied later anyway)
Let's do this! |
Changes
Checklist