Merge branch 'master' of euphorik.ch:rup into master
[rup.git] / README.md
1 # Setup\r
2 \r
3 ## Openssl on windows\r
4 \r
5 * Install vcpkg\r
6     * PS> git clone https://github.com/Microsoft/vcpkg.git\r
7     * PS> cd vcpkg\r
8     * PS> .\bootstrap-vcpkg.bat\r
9 * Install openssl dev livb\r
10     * PS> .\vcpkg.exe install openssl:x64-windows\r
11 * Define these env variables:\r
12     * $env:VCPKG_ROOT=<path to vcpkg installation>\r
13     * $env:OPENSSL_DIR=<path to vcpkg installation>\installed\x64-windows\r
14 * Add this path to $env:PATH:\r
15     * <path to vcpkg installation>\installed\x64-windows\bin\r
16 \r
17 ## Sass\r
18 \r
19 Sass is needed to generate the CSS file (backend/static/style.css) from the SASS file (backend/style.scss).\r
20 \r
21 \r
22 ## Run backend\r
23 \r
24 * use the command 'Cargo run' in the backend directory (not in the root directory).\r
25 \r
26 ## Autoreload\r
27 \r
28 https://actix.rs/docs/autoreload/