https://github.com/844196/campfire
https://github.com/844196/campfire
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/844196/campfire
- Owner: 844196
- License: mit
- Created: 2018-02-25T16:51:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-04T17:45:29.000Z (over 4 years ago)
- Last Synced: 2025-04-01T10:44:51.284Z (3 months ago)
- Language: TypeScript
- Homepage: https://campfire.844196.com/
- Size: 755 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Campfire [](https://circleci.com/gh/844196/campfire)
## Setup
1. Create Firebase project
2. Check config```js
var config = {
apiKey: "",
authDomain: ".firebaseapp.com",
databaseURL: "https://.firebaseio.com",
projectId: "",
storageBucket: ".appspot.com",
messagingSenderId: "",
};
```See:
3. Edit `.env`
```console
$ cp .env.sample .env
$ vim .env
```4. Run development server
```console
$ docker build -t campfire .
$ docker run --rm -it -p 8080:8080 campfire yarn run serve
```## Continuous Deploy
See [`.circleci/config.yml`](https://github.com/844196/campfire/blob/master/.circleci/config.yml) .