mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 09:14:46 +01:00
c040601f49
* Add missing migration
* Add generate_random_token() model util
* Move PublicTokenAuthentication to utils
* Make use of generate_random_token
* Add User.personal_access_token field
* Add PersonalAccessTokenAuthentication
* Fix PublicTokenAuthentication
* Fix migration and auth import
* Add personal_access_token to user API
* Update Setup.js
* Support trailing slash in API
* Improve PAT auth quality
* Add django-rest-hooks requirement
* Update settings.py for rest_hooks
* Fix django-rest-hooks requirement
* Bring back API routes with no double trailing slash
* Rename posthog.api.team to team_user
* Add API TODO
* Ad PAT auth with X-PAT HTTP header
* Replace User.personal_access_token with PersonalAPIKey model
* Fix PersonalAPIKey max_lengths
* Describe posthog.models.utils.generate_random_token better
* Add personal_api_key to API
* Add authenticate_header to PersonalAPIKeyAuthentication
* Add hook API endpoint
* Use django.utils.timezone in place of datetime.datetime
* Add Personal API Keys to Setup
* Sort personal_api_keys in ORM
* Add Action.on_perform()
* Remove requirements.txt comment
* Add a
* Add REST hook tasks
* Optimize PersonalAPIKeyAuthentication query
* Add a trailing slash version of /e endpoint
* Add team field to PersonalAPIKey model
* Add personal API key support to capture endpoint, get_cached_from_token
* Reject personal API keys from inactive users
* Add extra_properties_json field to /capture
* Improve PAK auth header regex
* Use custom hook model
* Deliver hooks
* Handle action.on_perform
* Consolidate userLogic in userLogic.tsx
* Update PersonalAPIKeys.js
* Make PersonalAPIKey foreign keys read-only
* Update requirements/dev.txt
* Make PersonalAPIKeys TSX
* Fix conflict
* Fix migration
* Fix minor mishaps
* Update and fix tests
* Use CharField of random 32 bits as hook.id
* Fix conflicting migrations
* Fix ValidationError in HookSerializer.validate_event
* Use query param in /api/event/actions ID filtering
* Rename endpoint `hook` to `hooks`
* Satisfy mypy
* Add tests
* Use DRF serialization in action_defined and annotation_created triggers
* Update migration leafs
* Make mypy ignore rest_hooks
* Update Django signal receiver names
* Update TS dependencies
* Revert "Update TS dependencies"
This reverts commit 7fc26fefcd
.
* Add field user to Hook model
* Update migration leafs
* Fix circular import
* Fix some code
* Install git before running pip install in Dockerfiles
* Improve personal API keys UI
* Satisfy mypy
* Reword key label placeholder
* Add personal API key support to /api/user/*
Unfortunately these endpoints are still limited by CSRF protections at the moment, so not accessible outside PostHog itself.
* Improve PersonalAPIKeyAuthentication and add CsrfOrKeyViewMiddleware
* Run collectstatic before test
* Don't install dev dependencies in CI
* Update dependency installation order in CI
* Fix bug and describe PersonalAPIKeyAuthentication
* Fix CI issues
* Fix typing issues
* Fix more typing issues
* Use /api/personal_api_keys to list keys
* Move REST hooks (and therefore Zapier) to ee/
* Refactor personal API logic with kea-loaders
* Add "More about API authentication in PostHog docs."
* Update PersonalAPIKeys.tsx
* Use TestMixin
* Fix "Authentication" that should've been "Authorization"
* Add option to skip self.client.force_login in API tests
* Include team_id and user_id in personal API key serialization
* Update test_hooks.py
* Add personal API key tests
* Remove leftover
* Make ee.settings override posthog.settings
* Don't directly import from models
* Remove unused imports
* Fix mypy issues
* Fix HOOK_DELIVERER
* Use decorator for /api/user PAK auth
* Don't fire REST hook if user doesn't have "zapier" feature
* Import Optional
* Reword to "premium Zapier"
* Make mypy happy
* Fix test_delete_personal_api_key
* Fix misclick
* Fix and test /capture with personal API key
* Make mypy happy
* Remove extra_properties_json
* Resolve migrations
* Remove apt-utils
* Optimize and test PAK user.is_active filtering
* Replace DEBUG true with 1
* Remove unused instance_id
* Improve typing
* Fix deletion toast
* Refactor CopyToClipboard and use it in PAKs
* Use toast.success
* Update migrations
* Fix migration
* Fix migrations
* Complete merge
Co-authored-by: Tim Glaser <tim@glsr.nl>
68 lines
2.7 KiB
Docker
68 lines
2.7 KiB
Docker
FROM python:3.8-slim
|
|
ENV PYTHONUNBUFFERED 1
|
|
RUN mkdir /code
|
|
WORKDIR /code
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends git gnupg \
|
|
&& apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8 \
|
|
&& echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
|
|
&& apt-get update && apt-get install -y --no-install-recommends postgresql redis-server \
|
|
&& apt-get purge -y gnupg \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# START POSTGRES
|
|
# Run the next command as the ``postgres`` user created by the ``postgres-9.3`` package when it was ``apt-get installed``
|
|
USER postgres
|
|
# Create a PostgreSQL role named ``docker`` with ``docker`` as the password and
|
|
# then create a database `docker` owned by the ``docker`` role.
|
|
RUN /etc/init.d/postgresql start &&\
|
|
psql --command "CREATE USER posthog WITH SUPERUSER PASSWORD 'posthog';" &&\
|
|
createdb posthog
|
|
# END POSGRES
|
|
|
|
USER root
|
|
|
|
RUN /etc/init.d/redis-server start
|
|
|
|
COPY requirements.txt /code/
|
|
# install dependencies but ignore any we don't need for dev environment
|
|
RUN pip install $(grep -ivE "tblib|psycopg2|ipdb|mypy|ipython|ipdb|pip|djangorestframework-stubs|django-stubs|ipython-genutils|mypy-extensions|Pygments|typed-ast|jedi" requirements.txt) --no-cache-dir --compile\
|
|
&& pip install psycopg2-binary --no-cache-dir --compile\
|
|
&& pip uninstall ipython-genutils pip -y \
|
|
&& rm -rf /usr/local/lib/python3.8/site-packages/numpy/core/tests \
|
|
&& rm -rf /usr/local/lib/python3.8/site-packages/pandas/tests
|
|
|
|
COPY package.json /code/
|
|
COPY yarn.lock /code/
|
|
COPY webpack.config.js /code/
|
|
COPY postcss.config.js /code/
|
|
COPY babel.config.js /code/
|
|
COPY tsconfig.json /code/
|
|
COPY .kearc /code/
|
|
COPY frontend/ /code/frontend
|
|
RUN apt-get update && apt-get install -y --no-install-recommends curl \
|
|
&& curl -sL https://deb.nodesource.com/setup_12.x | bash - \
|
|
&& apt-get install nodejs -y --no-install-recommends \
|
|
&& npm install -g yarn@1 \
|
|
&& yarn config set network-timeout 300000 \
|
|
&& yarn --frozen-lockfile \
|
|
&& yarn build \
|
|
&& yarn cache clean \
|
|
&& npm uninstall -g yarn \
|
|
&& apt-get purge -y nodejs curl \
|
|
&& rm -rf node_modules \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& rm -rf frontend/dist/*.map
|
|
|
|
COPY . /code/
|
|
|
|
RUN SECRET_KEY='unsafe secret key for collectstatic only' DATABASE_URL='postgres:///' REDIS_URL='redis:///' python manage.py collectstatic --noinput
|
|
|
|
RUN /etc/init.d/postgresql start\
|
|
&& DATABASE_URL=postgres://posthog:posthog@localhost:5432/posthog REDIS_URL='redis:///' python manage.py migrate\
|
|
&& /etc/init.d/postgresql stop
|
|
|
|
VOLUME /var/lib/postgresql
|
|
EXPOSE 8000
|
|
ENTRYPOINT ["./bin/docker-preview"]
|