This is my personal blog.
- js uses a very old technology (I'm not familiar with the front-end technology)
- Redis
- Postgresql
$ curl https://sh.rustup.rs -sSf | sh
This project use sqlx as Orm framework, so you need to install its command line tool via Rust package manager(eg, Cargo)
$ cargo install sqlx-cliUse docker images
$ docker pull postgres
$ docker run --name your_container_name -e POSTGRES_PASSWORD=system -d -p 5432:5432 postgres$ docker run -it --rm --link your_container_name:postgres postgres psql -h postgres -U postgres$ sqlx database create
$ sqlx migrate runUse docker images
$ docker pull redis
$ docker run --name redis -p 6379:6379 -d redisnginx is only used when deploying production
server {
listen 80;
server_name 127.0.0.1;
location / {
proxy_pass http://127.0.0.1:8080;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /api/v1 {
proxy_pass http://127.0.0.1:8080;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
$ cargo run --release // listen on 127.0.0.1:8080
if you want to login admin, the account is admin, password is admin
This project includes docker-compose.yml to run the application together with Postgres and Redis using container-friendly settings.
- Network Isolation: PostgreSQL and Redis are only accessible within the internal network (not exposed to the host). Only the
blogservice exposes port 8080 to the outside. - Automatic Database Migration: The
db-migrateservice automatically runssqlx migrate runon startup to initialize the database schema. - Health Checks: Services include health checks to ensure proper startup order.
- Copy or create the compose env file. A compose-specific file named
.env.composeis provided. Do NOT overwrite your development.env.
# If you want to edit values, copy the example first:
cp .env.compose .env.compose.local
# Edit .env.compose.local as needed, then rename it
mv .env.compose.local .env.compose- Build and start services:
docker compose up --build
# Or run in background
docker compose up -d --build- View logs:
docker compose logs -f blog- Database migrations run automatically via the
db-migrateservice. No manual migration is required. - PostgreSQL and Redis ports are NOT exposed to the host for security. They are only accessible within the Docker internal network.
- The
blogservice will wait for:- PostgreSQL to be healthy
- Redis to be healthy
- Database migrations to complete successfully
- The project
.envis reserved for native development and is not used by compose. Compose loads.env.composeinto theblogcontainer. .env.composeis included in.gitignoreto avoid committing secrets. Use.env.exampleor.env.composeas a template.- If you change service names in
docker-compose.yml, update.env.composeaccordingly.