Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
saxix committed Sep 25, 2024
1 parent 443562f commit 7c64d6a
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/components/aurora/.pages
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
nav:
- index.md
- Contributing: setup
- Usage: usage.md
2 changes: 1 addition & 1 deletion docs/components/aurora/setup.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Development Setup
# Contributing


Prerequisites:
Expand Down
24 changes: 24 additions & 0 deletions docs/components/aurora/usage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Run

To start working with Aurora you can:


### Build and use your docker

After you have cloned the repo, be sure to have a Reddis and PostgreSQL server running on your machine

export ADMIN_EMAIL=admin@example.com
export ADMIN_PASSWORD=password
export DATABASE_URL=postgres://postgres:@127.0.0.1:5432/aurora
export CACHE_URL=redis://127.0.0.1:6379/1?client_class=django_redis.client.DefaultClient

cd docker

make build run


### Use provided compose.yml

docker compose up

navigate to http://localhost:8000/admin/ and login using `admin@example.com/password`

0 comments on commit 7c64d6a

Please sign in to comment.