1
0

motd 787 B

123456789101112131415161718192021222324
  1. Welcome to the Pagure development environment!
  2. Here are some tips:
  3. * Pagure is installed in a Python virtualenv. Use `deactivate` to leave it,
  4. or `workon python3-pagure` to get back in.
  5. * The code for Pagure is located at ~/devel/
  6. * You can populate the database with `python dev-data.py --all`
  7. * Run `pstart` to start the development server and `pstop` to stop it.
  8. * Logs for the server are available with `journalctl`; the services are run
  9. as systemd user units in ~/.config/systemd/user/
  10. * To run the tests you need python3 virtualenv: `workon python3-pagure`.
  11. Then you can run them with `./runtests.py run`.
  12. Once you start the server you can navigate to http://localhost:5000/
  13. in your browser on the host to access your Pagure development environment.
  14. Happy hacking!