Adapt README for SQLite

This commit is contained in:
fnux 2020-05-07 12:31:59 +02:00
parent b8ac99acb6
commit 268e08c4db
2 changed files with 10 additions and 6 deletions

1
.gitignore vendored
View File

@ -24,3 +24,4 @@ venv/
dist/
*.iso
*.sqlite3

View File

@ -10,12 +10,7 @@ Cloud management platform, the ungleich way.
Install system dependencies:
* On Fedora, you will need the following packages: `python3-virtualenv python3-devel libpq-devel openldap-devel gcc chromium`
You will need a Postgres database running locally:
* Install on configure PGSQL on your base system.
* OR use a container! `podman run --rm -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust -it postgres:latest`
* On Fedora, you will need the following packages: `python3-virtualenv python3-devel openldap-devel gcc chromium`
NOTE: you will need to configure a LDAP server and credentials for authentication. See `uncloud/settings.py`.
@ -53,3 +48,11 @@ Django version 3.0.6, using settings 'uncloud.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
```
### Note on PGSQL
If you want to use Postgres:
* Install on configure PGSQL on your base system.
* OR use a container! `podman run --rm -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust -it postgres:latest`