diff options
author | CSDUMMI <csdummi.misquality@simplelogin.co> | 2024-10-07 14:47:55 +0200 |
---|---|---|
committer | CSDUMMI <csdummi.misquality@simplelogin.co> | 2024-10-07 14:47:55 +0200 |
commit | 0f2af06a6d5f804e30ec2b49917cec144f907572 (patch) | |
tree | d8f689f96be4b9cdbfd809c3751133dcd13c64a1 /README.md | |
parent | 506ef8a43c3985067f2b9004fcc601056e172ddd (diff) |
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -3,10 +3,18 @@ Federated Shop ## Development Setup -Have docker and docker-compose installed and then run in the project root: +Run Redis (and Postgres) services and expose them to ports `6379` and `5432` on `localhost`: ``` -$ docker compose up -d +$ docker compose up -d +``` + +Run the server with deno: +``` +$ cd fedishoop +$ deno task dev ``` -The current state of the website will run on [`http://localhost:8000`](http://localhost:8000) +Go to [`localhost:8000`](http://localhost:8000) + +Follow https://fedify.dev/tutorial/microblog for further info. |