Skip to content

zipmex/fire

 
 

Repository files navigation

Fire

fire

A bot that creates GitHub Issues via email. Read more at https://fire.fundersclub.com/.

To try it out, send an email to [email protected] and take a look at https://github.com/FundersClub/fire-test/issues

To get set up:

git clone [email protected]:FundersClub/fire.git
cd fire
python3.6 -m venv venv
. ./venv/bin/activate
pip install -r py-requirements/dev.txt
npm install
createdb firebot

If you have access to the Heroku app:

git remote add heroku https://git.heroku.com/fc-firebot.git
./bin/restore-db

Otherwise, you'll need to set up the DB manually. This means:

  1. ./manage.py syncdb
  2. ./manage.py createsuperuser
  3. Run the dev server (see below)
  4. Go to http://localhost:12001/admin/socialaccount/socialapp/add/ and set up a github social app

Running the dev servers

./bin/run-dev-server (to run backend at http://localhost:12000/)
npm start (to run frontend at http://localhost:12001/)

You'll need to run both the backend and the frontend separately. The frontend uses Webpack, which runs its own webserver and is responsible for proxying relevant API calls to the Django backend (see webpack.dev.js's proxy). Once both servers are running, navigate to http://localhost:12001/ to use the app (with hot-reload, etc enabled).

If you'd like to simulate the production environment locally, run npm run build to produce the compiled static assets. Then, navigate to http://localhost:12000/. The compiled frontend will now be served via Django.

Running tests

./manage.py test
npm test

Releases

No releases published

Packages

No packages published

Languages

  • Python 46.8%
  • TypeScript 23.6%
  • HTML 19.8%
  • JavaScript 3.9%
  • CSS 3.1%
  • SCSS 2.4%
  • Shell 0.4%