Skip to content

Commit bfda49e

Browse files
committed
First port — working…
This is an example of moving one project to the polylith/monorepo architecture. This may be a throwaway as it loses all the git history for the migrated files. And we may want to think more carefully about the naming conventions for the components and bases.
1 parent 61d7fed commit bfda49e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+7529
-2
lines changed

.gitignore

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
*.pyc
2+
__pycache
3+
.DS_Store
4+
node_modules
5+
build
6+
*~
7+
*.pyc
8+
__pycache__
9+
.vscode
10+
.web-installed
11+
.worker-installed
12+
.ssh
13+
.nova
14+
.env
15+
logfiles
16+
datashop
17+
build_info
18+
sphinx_settings.json
19+
dist
20+
.venv
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from rsptx.author_server_api import core
2+
from rsptx.author_server_api import worker
3+
from rsptx.author_server_api import main
4+
5+
__all__ = ["core", "main", "worker"]

bases/rsptx/author_server_api/core.py

Whitespace-only changes.

0 commit comments

Comments
 (0)