https://github.com/halsekiraika/wawwd
This is a backend application for the digital art project "みんなの空間~We are what we do~", which is positioned as part of Ehime Prefecture's "Web 3.0 Human Resource Development Verification Project".
https://github.com/halsekiraika/wawwd
backend rest-api rust-lang websocket
Last synced: 9 months ago
JSON representation
This is a backend application for the digital art project "みんなの空間~We are what we do~", which is positioned as part of Ehime Prefecture's "Web 3.0 Human Resource Development Verification Project".
- Host: GitHub
- URL: https://github.com/halsekiraika/wawwd
- Owner: HalsekiRaika
- License: gpl-3.0
- Created: 2023-09-08T05:19:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-26T00:36:35.000Z (almost 2 years ago)
- Last Synced: 2025-10-08T23:39:23.767Z (9 months ago)
- Topics: backend, rest-api, rust-lang, websocket
- Language: Rust
- Homepage: https://portal-wawwd.studio.site/about
- Size: 412 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WAWWD API Server
Required
* Docker
* Docker-Compose
* rustup 1.72+
Set Environment Variable
```shell
touch .env.docker
echo "PG_DATABASE_URL=postgresql://wawwd123:wawwd456@postgres_db:5432/wawwd" >> .env.docker
echo "REDIS_URL=redis://redis:6379/" >> .env.docker
echo "S3_BUCKET_NAME=" >> .env.docker
echo "S3_BUCKET_REGION=" >> .env.docker
echo "S3_ANONYMOUS=" >> .env.docker
echo "S3_USE_LOCALSTACK=" >> .env.docker
```
Run On
```shell
docker-compose up -d
```
Run Dev
```shell
docker-compose -f docker-compose-test.yml up -d
```
```shell
cargo run -- --debug-assertion
```