Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zikwall/blogchain-rust
A network of blog written in Rust for blogchain clients
https://github.com/zikwall/blogchain-rust
blogchain rust
Last synced: 6 days ago
JSON representation
A network of blog written in Rust for blogchain clients
- Host: GitHub
- URL: https://github.com/zikwall/blogchain-rust
- Owner: zikwall
- Created: 2020-10-13T18:40:44.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-09T18:15:33.000Z (about 4 years ago)
- Last Synced: 2024-11-09T20:44:38.399Z (2 months ago)
- Topics: blogchain, rust
- Language: Rust
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Blogсhain Rust
### Requirements
#### Windows
- `Microsoft Visual C++ 2015-2019 Redistributable`
- `lmysqlclient` or another database packages (pg, sqllite)#### Linux
- `build-essentials`
- `libmysqlclient-dev` or another database packages (pg, sqllite)#### Database
- `$ mysql> CREATE USER 'blogchain'@'localhost' IDENTIFIED BY '123456';`
- `$ mysql> GRANT ALL PRIVILEGES ON blogchain . * TO 'blogchain'@'localhost';`
- `$ mysql> FLUSH PRIVILEGES;`### Development
- `$ rustup default nightly | rustup override set nightly`
- `$ cargo install diesel_cli --no-default-features --features "mysql"`
- `$ echo DATABASE_URL=mysql://blogchain:123456@localhost/blogchain > .env`
- `$ cargo run`