https://github.com/codeyellowbv/realtime
Time tracking application for Code Yellow-ers
https://github.com/codeyellowbv/realtime
Last synced: 3 months ago
JSON representation
Time tracking application for Code Yellow-ers
- Host: GitHub
- URL: https://github.com/codeyellowbv/realtime
- Owner: CodeYellowBV
- License: mit
- Created: 2017-03-17T16:11:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-13T08:23:53.000Z (about 2 years ago)
- Last Synced: 2025-04-14T04:09:32.038Z (about 1 year ago)
- Language: JavaScript
- Size: 817 KB
- Stars: 2
- Watchers: 9
- Forks: 2
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Realtime ⏰
[](https://travis-ci.org/CodeYellowBV/realtime)
[](https://codecov.io/gh/CodeYellowBV/realtime)
Realtime is a time tracking tool made from scratch for the needs of Code Yellow employees.
At Code Yellow we want to track time with few steps, and see what others are working on / have been working on. Toggl got close, but we don't want to rely on external services. This is why we built our own Open Source variant.
TODO: fancy gif
## Requirements
For the frontend:
- Node v6+
- npm v3+ or Yarn
For the backend:
- Python 3 (`apt-get install python3`)
- Python virtualenv (`apt-get install python-virtualenv`)
- Postgresql
The backend should work on Linux and Mac, but not Windows. For installation details with Debian, checkout the `scripts/` folder in our [Vagrant repository](https://github.com/CodeYellowBV/realtime-vagrant).
## Install
```
cd frontend && yarn
```
```
cd backend
virtualenv --python=python3 venv
source venv/bin/activate
pip install -r packages.pip
./manage.py db upgrade
```
## Running
### Development
1. `cd frontend; yarn start`
1. `cd backend; source/venv/bin/activate; ./manage.py runserver`