ActivityWatch / aw-server

ActivityWatch server for storage of all your Quantified Self data.
Mozilla Public License 2.0
95 stars 55 forks source link

Unable to run the project locally. main.py and requirements.txt files missing #69

Closed kevit-parth-mansata closed 4 years ago

kevit-parth-mansata commented 4 years ago

I tried to run the project locally. I was facing issue to start the project and debugged that to start the project, main.py and requirements.txt files are required which are missing. Can somebody guide which is the correct branch to setup the project.

Many thanks in advance for the help.

ErikBjare commented 4 years ago

There is no requirements.txt because requirements are handled by poetry.

You can install it using poetry with poetry install or with pip install .

After installing you should have aw-server available in your PATH. Or you could run it directly as a Python module with poetry run python3 -m aw_server (or without poetry: python3 -m aw_server)