-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from ActivityWatch/dev/server-next
Major server refactoring
- Loading branch information
Showing
11 changed files
with
27 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
build | ||
dist | ||
__pycache__ | ||
.*cache | ||
|
||
# Old repo | ||
activity-watch | ||
|
||
.idea | ||
venv* | ||
old | ||
other |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule aw-core
updated
23 files
+2 −0 | .coveragerc | |
+1 −0 | .gitignore | |
+1 −1 | aw_core/__about__.py | |
+2 −1 | aw_core/__init__.py | |
+1 −1 | aw_core/cached_views.py | |
+1 −1 | aw_core/config.py | |
+10 −18 | aw_core/dirs.py | |
+10 −4 | aw_core/log.py | |
+11 −10 | aw_core/models.py | |
+5 −4 | aw_core/schema.py | |
+19 −0 | aw_core/schemas/event.json | |
+110 −60 | aw_core/transforms.py | |
+1 −1 | aw_core/views.py | |
+5 −2 | aw_datastore/__init__.py | |
+23 −10 | aw_datastore/benchmark.py | |
+1 −1 | aw_datastore/datastore.py | |
+1 −1 | aw_datastore/storages/__init__.py | |
+22 −15 | aw_datastore/storages/peewee.py | |
+0 −84 | schemas/event.json | |
+1 −0 | setup.py | |
+6 −0 | stubs/appdirs.pyi | |
+4 −3 | tests/test_datastore.py | |
+23 −23 | tests/test_schemas.py |
Submodule aw-server
updated
13 files
+2 −0 | .gitignore | |
+6 −2 | Makefile | |
+3 −2 | aw_server/__init__.py | |
+115 −378 | aw_server/api.py | |
+2 −3 | aw_server/config.py | |
+7 −0 | aw_server/exceptions.py | |
+2 −10 | aw_server/log.py | |
+2 −3 | aw_server/main.py | |
+217 −0 | aw_server/rest.py | |
+13 −6 | aw_server/server.py | |
+14 −0 | requirements.txt | |
+4 −17 | setup.py | |
+133 −15 | tests/test_client.py |
Submodule aw-watcher-afk
updated
4 files
+49 −70 | aw_watcher_afk/afk.py | |
+0 −0 | aw_watcher_afk/config.py | |
+4 −4 | aw_watcher_afk/unix.py | |
+2 −2 | aw_watcher_afk/windows.py |
Submodule aw-watcher-window
updated
3 files
+1 −1 | Makefile | |
+1 −1 | aw_watcher_window/main.py | |
+3 −2 | setup.py |
Submodule aw-webui
updated
6 files
+4 −0 | .travis.yml | |
+1 −1 | build/webpack.dev.conf.js | |
+57 −7 | src/App.vue | |
+1 −1 | src/resources.js | |
+2 −1 | src/views/Bucket.vue | |
+1 −48 | src/views/Home.vue |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters