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.2 KiB

10 years ago
10 years ago
123456789101112131415161718192021222324252627282930313233
  1. bitshift
  2. ========
  3. bitshift is a semantic search engine for source code.
  4. Branches
  5. --------
  6. - `master`: working, tested, version-numbered code - no direct commits; should
  7. only accept merges from `develop` when ready to release
  8. - `develop`: integration branch with unreleased but mostly functional code -
  9. direct commits allowed but should be minor
  10. - `feature/*`: individual components of the project with untested, likely
  11. horribly broken code - branch off from and merge into `develop` when done
  12. Style
  13. -----
  14. bitshift uses [SASS][SASS] for styling; compile the stylesheets to CSS with
  15. `sass --watch static/sass/:static/css`.
  16. Documentation
  17. -------------
  18. To build documentation, run `make html` from the `docs` subdirectory. You can
  19. then browse from `docs/build/html/index.html`.
  20. To automatically update the API documentation structure (necessary when adding
  21. new modules or packages, but *not* when adding functions or changing
  22. docstrings), run `sphinx-apidoc -fo docs/source/api bitshift` from the project
  23. root. Note that this will revert any custom changes made to the files in
  24. `docs/source/api`, so you might want to update them by hand instead.
  25. [SASS]: http://sass-lang.com/guide