An open API service indexing awesome lists of open source software.

https://github.com/844196/campfire


https://github.com/844196/campfire

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Campfire [![](https://circleci.com/gh/844196/campfire.svg?style=shield&circle-token=c69ad222831db1371c3c02e4d18819664a3e3ccd)](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) .