An open API service indexing awesome lists of open source software.

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".

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
```