Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lindsaykwardell/clocktracker
Web app for recording gameplays and stats for Blood on the Clocktower
https://github.com/lindsaykwardell/clocktracker
Last synced: about 1 month ago
JSON representation
Web app for recording gameplays and stats for Blood on the Clocktower
- Host: GitHub
- URL: https://github.com/lindsaykwardell/clocktracker
- Owner: lindsaykwardell
- Created: 2023-07-03T20:50:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-13T20:35:02.000Z (9 months ago)
- Last Synced: 2024-04-14T10:57:14.912Z (9 months ago)
- Language: Vue
- Homepage: https://clocktracker.app
- Size: 40.7 MB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ClockTracker
ClockTracker is a web application for recording games of Blood on the Clocktower. It is a platform where players can save details about their games, see their statistics, and share them with friends.
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install
```## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview
```