-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
nav: | ||
- index.md | ||
- Contributing: setup | ||
- Usage: usage.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Development Setup | ||
# Contributing | ||
|
||
|
||
Prerequisites: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |