new-ryuslash.org/README.org

25 lines
1.1 KiB
Org Mode
Raw Normal View History

2019-10-06 21:57:14 +02:00
#+TITLE: ryuslash.org README
#+STARTUP: showall
This is the source project of my website [[https://ryuslash.org]]. It doesn't contain much for now, but eventually this will be where all my stuff lives.
2019-10-06 21:57:14 +02:00
* Compiling
To work on this project it's recommended that you use Guix Shell.
If you first add the directory containing this project into your =~/.config/guix/shell-authorized-directories=, when you run ~guix shell~ it'll automatically install the necessary dependencies to make sure you can compile and deploy this project:
#+begin_src shell
echo "$(pwd)" >> ~/.config/guix/shell-authorized-directories
#+end_src
And then just run this command to start working:
: guix shell
If you didn't add this directory to your =shell-authorized-directories=, you can accomplish the same thing with:
: guix shell --manifest manifest.scm
To compile a local copy from Org-mode files into HTML, use the command ~make publish~. This will generate a local copy in the ~public_html~ directory. You can also run ~make~ without any arguments to see what available other commands there are.