Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chancancode/reactions
Source code for https://reactions.live
https://github.com/chancancode/reactions
Last synced: 26 days ago
JSON representation
Source code for https://reactions.live
- Host: GitHub
- URL: https://github.com/chancancode/reactions
- Owner: chancancode
- License: mit
- Created: 2018-10-02T04:07:21.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-19T17:43:10.000Z (about 6 years ago)
- Last Synced: 2024-10-07T17:19:31.429Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 90.8 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Reactions
Source code for [https://reactions.live](https://reactions.live).
## Prerequisites
You will need the following things properly installed on your computer.
* [Git](https://git-scm.com/)
* [Docker](https://www.docker.com)
* [Xcode](https://developer.apple.com/xcode/) (optional, for the viewer app)First, setup your development enviornment with:
```
SKIP_DEPLOY=1 ./bin/configure
```Then, start the app by running:
```
./bin/start
```To run the OS X fullscreen viewer app, open `viewer.xcodeproj` in Xcode, then:
* Product > Scheme > Select "viewer (Debug)"
* Product > Run## Deploy
First, setup your development enviornment with:
```
SKIP_DEV=1 ./bin/configure
```Then, deploy the app by running:
```
./bin/deploy
```To build the OS X fullscreen viewer app, open `viewer.xcodeproj` in Xcode, then:
* Product > Scheme > Select "viewer (Release)"
* Product > Build