https://github.com/wldyslw/wanderer-server
Personal blog backend written in Rust
https://github.com/wldyslw/wanderer-server
blog diesel-rs postgresql rocket-rs rust
Last synced: about 1 year ago
JSON representation
Personal blog backend written in Rust
- Host: GitHub
- URL: https://github.com/wldyslw/wanderer-server
- Owner: wldyslw
- License: gpl-3.0
- Created: 2020-12-29T10:51:38.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-28T14:17:21.000Z (about 5 years ago)
- Last Synced: 2025-05-22T01:11:38.324Z (about 1 year ago)
- Topics: blog, diesel-rs, postgresql, rocket-rs, rust
- Language: Rust
- Homepage:
- Size: 116 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wanderer-Server
Blog written in Rust with help of Rocket and Diesel (because I can).
## Deployment
Project requires Docker.
```bash
# create .env file with required variables (replace values below with your own)
# ADMIN_USERNAME is optional, default value is "Admin"
# ROCKET_ENV is also optional, default value is "dev"
echo "ROCKET_ENV=prod \
POSTGRES_PASSWORD=12345678 \
ADMIN_USERNAME=\"John Doe\" \
ADMIN_PASSWORD=12345678" > .env
# run the application
docker-compose up
```