NadekoBot/docs/guides/From Source.md

32 lines
753 B
Markdown
Raw Normal View History

Prerequisites
- [.net core 1.1.X][.netcore]
- [ffmpeg][ffmpeg] (and added to path) either download or install using your distro's package manager
- [git][git]
*Clone the repo*
2017-06-11 12:32:35 +00:00
`git clone -b 1.4 https://github.com/Kwoth/NadekoBot`
2017-06-11 12:32:35 +00:00
`cd NadekoBot/src/NadekoBot`
2017-06-11 12:32:35 +00:00
Edit `credentials.json.` Read the JSON Exaplanations guide on the left if you don't know how to set it up
2017-06-11 12:32:35 +00:00
*run*
2017-06-11 12:32:35 +00:00
`dotnet restore`
2017-06-11 12:32:35 +00:00
`dotnet run -c Release`
*when you decide to updatein the future (might not work if you've made custom edits to the source, make sure you know how git works)*
2017-06-11 12:32:35 +00:00
`git pull`
2017-06-11 12:32:35 +00:00
`dotnet restore`
2017-06-11 12:32:35 +00:00
`dotnet run -c Release`
[.netcore]: https://www.microsoft.com/net/download/core#/sdk
[ffmpeg]: http://ffmpeg.zeranoe.com/builds/
[git]: https://git-scm.com/downloads