A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.5 KiB

10 years ago
10 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. bitshift
  2. ========
  3. bitshift is a semantic search engine for source code developed by Benjamin
  4. Attal, Ben Kurtovic, and Severyn Kozak. This README is intended for developers
  5. only. For a user overview of the project:
  6. * read our [about page](http://bitshift.it/)
  7. * watch our [demo video](https://vimeo.com/98697078)
  8. Branches
  9. --------
  10. - `master`: working, tested, version-numbered code - no direct commits; should
  11. only accept merges from `develop` when ready to release
  12. - `develop`: integration branch with unreleased but mostly functional code -
  13. direct commits allowed but should be minor
  14. - `feature/*`: individual components of the project with untested, likely
  15. horribly broken code - branch off from and merge into `develop` when done
  16. Style
  17. -----
  18. bitshift uses [SASS][SASS] for styling; compile the stylesheets to CSS with
  19. `sass --watch static/sass/:static/css`.
  20. Documentation
  21. -------------
  22. To build documentation, run `make html` from the `docs` subdirectory. You can
  23. then browse from `docs/build/html/index.html`.
  24. To automatically update the API documentation structure (necessary when adding
  25. new modules or packages, but *not* when adding functions or changing
  26. docstrings), run `sphinx-apidoc -fo docs/source/api bitshift` from the project
  27. root. Note that this will revert any custom changes made to the files in
  28. `docs/source/api`, so you might want to update them by hand instead.
  29. [SASS]: http://sass-lang.com/guide
  30. Releasing
  31. ---------
  32. - Update `__version__` in `bitshift/__init__.py`, `version` in `setup.py`, and
  33. `version` and `release` in `docs/conf.py`.