2024-10-07 13:35:46 +02:00
|
|
|
# FediShoop
|
|
|
|
|
2024-10-07 14:25:10 +02:00
|
|
|
Federated Shop
|
|
|
|
|
|
|
|
## Development Setup
|
2024-10-07 14:47:55 +02:00
|
|
|
Run Redis (and Postgres) services and expose them to ports `6379` and `5432` on `localhost`:
|
2024-10-07 14:25:10 +02:00
|
|
|
|
|
|
|
```
|
2024-10-07 14:47:55 +02:00
|
|
|
$ docker compose up -d
|
|
|
|
```
|
|
|
|
|
|
|
|
Run the server with deno:
|
|
|
|
```
|
|
|
|
$ cd fedishoop
|
|
|
|
$ deno task dev
|
2024-10-07 14:25:10 +02:00
|
|
|
```
|
|
|
|
|
2024-10-07 14:47:55 +02:00
|
|
|
Go to [`localhost:8000`](http://localhost:8000)
|
|
|
|
|
|
|
|
Follow https://fedify.dev/tutorial/microblog for further info.
|