Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.vscode/

# directories

sandbox/
build/
.cache/
dist/
Expand Down
28 changes: 28 additions & 0 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,31 @@
## Can I delete all my frames?

Yes! To do so, delete the `frames` file in your configuration folder (see [configuration](user-guide/configuration.md) to find its location).

## what is a frame?

A frame it's a single logging unit that gets created when you issue the start command

## what to do if I forgot to start the watson when I started working?

You have a couple of options:
If you are still working on the project, you can use the watson start command, and then the watson edit command and change the starting time (the edit command defaults to the current or last frame if no frame is specified)
If you already finished working, you can use watson add to add frame
A start --at option is currently being developed

## what can I do if I forgot to stop watson when I finished working?

If you forgot to stop the project on time, you can specify an earlier stopping time with the --at option, like `watson stop --at 12:00:00`

## Can I import a project?

There is currently no "official" way to import frames from other projects, but you can see this link for a workaround:
https://github.com/TailorDev/Watson/issues/137

## Which python versions does watson support?

See setup.py and tox.ini

## Where does Watson store data?

Data is stored in a plain old JSON file, in the watson app directory usually. See: http://click.pocoo.org/5/api/#click.get_app_dir.