compair-core 0.3.0__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of compair-core might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: compair-core
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Open-source foundation of the Compair collaboration platform.
5
5
  Author: RocketResearch, Inc.
6
6
  License: MIT
@@ -70,7 +70,7 @@ git clone https://github.com/RocketResearch-Inc/compair_core.git
70
70
  cd compair_core
71
71
  python -m venv .venv
72
72
  source .venv/bin/activate
73
- pip install -e .[dev]
73
+ pip install -e ".[dev]"
74
74
  ```
75
75
 
76
76
  ## Containers
@@ -97,7 +97,7 @@ See `compair_core/server/settings.py` for the full settings surface.
97
97
  python -m venv .venv
98
98
  source .venv/bin/activate
99
99
  pip install -e .[dev]
100
- uvicorn compair_core.server.app:app --reload
100
+ uvicorn compair_core.server.app:create_app --factory --reload
101
101
  ```
102
102
 
103
103
  The API will be available at http://127.0.0.1:8000 and supports the Swagger UI at `/docs`.
@@ -36,7 +36,7 @@ git clone https://github.com/RocketResearch-Inc/compair_core.git
36
36
  cd compair_core
37
37
  python -m venv .venv
38
38
  source .venv/bin/activate
39
- pip install -e .[dev]
39
+ pip install -e ".[dev]"
40
40
  ```
41
41
 
42
42
  ## Containers
@@ -63,7 +63,7 @@ See `compair_core/server/settings.py` for the full settings surface.
63
63
  python -m venv .venv
64
64
  source .venv/bin/activate
65
65
  pip install -e .[dev]
66
- uvicorn compair_core.server.app:app --reload
66
+ uvicorn compair_core.server.app:create_app --factory --reload
67
67
  ```
68
68
 
69
69
  The API will be available at http://127.0.0.1:8000 and supports the Swagger UI at `/docs`.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: compair-core
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Open-source foundation of the Compair collaboration platform.
5
5
  Author: RocketResearch, Inc.
6
6
  License: MIT
@@ -70,7 +70,7 @@ git clone https://github.com/RocketResearch-Inc/compair_core.git
70
70
  cd compair_core
71
71
  python -m venv .venv
72
72
  source .venv/bin/activate
73
- pip install -e .[dev]
73
+ pip install -e ".[dev]"
74
74
  ```
75
75
 
76
76
  ## Containers
@@ -97,7 +97,7 @@ See `compair_core/server/settings.py` for the full settings surface.
97
97
  python -m venv .venv
98
98
  source .venv/bin/activate
99
99
  pip install -e .[dev]
100
- uvicorn compair_core.server.app:app --reload
100
+ uvicorn compair_core.server.app:create_app --factory --reload
101
101
  ```
102
102
 
103
103
  The API will be available at http://127.0.0.1:8000 and supports the Swagger UI at `/docs`.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "compair-core"
7
- version = "0.3.0"
7
+ version = "0.3.1"
8
8
  description = "Open-source foundation of the Compair collaboration platform."
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
File without changes
File without changes