Skip to content

Commit d8e12d7

Browse files
authored
[👻] Add support for verifying Ghostwriter tokens (#133)
We are going to start using Replit Identity to authenticate against Ghostwriter for better latency. This change is the first implementation, with sufficient support to validate Ghostwriter tokens!
1 parent e6ff53e commit d8e12d7

File tree

17 files changed

+832
-25
lines changed

17 files changed

+832
-25
lines changed

.flake8

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ ignore = E203,W503,ANN101,ANN102,S322,ANN206,S201,D105,D107
44
per-file-ignores =
55
src/replit/__init__.py:F401
66
src/replit/web/__init__.py:F401
7+
exclude =
8+
src/replit/goval/api
79

810
max-line-length = 88
911
application-import-names = vidgen,tests

.semaphore/semaphore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ blocks:
1818
- checkout --use-cache
1919
- python -m pip install --upgrade poetry
2020
- poetry install
21-
- git diff origin/master | poetry run flake8 --diff
21+
- poetry run flake8
2222
- name: unittest
2323
commands:
2424
- sem-version python 3.8

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ provides:
1515
- A fully-featured `Replit DB <https://docs.repl.it/misc/database>`_ client and CLI.
1616
- A Flask–based application framework for accellerating development on the platform.
1717
- A simple audio library that can play tones and audio files!
18+
- A library to authenticate between Repls.
1819

1920
Table of Contents
2021
=================

0 commit comments

Comments
 (0)