Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/okfde/map.vernetztewelten.org
UMap-Deployment für VernetzteWelten.org
https://github.com/okfde/map.vernetztewelten.org
vernetztewelten
Last synced: 5 days ago
JSON representation
UMap-Deployment für VernetzteWelten.org
- Host: GitHub
- URL: https://github.com/okfde/map.vernetztewelten.org
- Owner: okfde
- License: mit
- Archived: true
- Created: 2019-02-18T12:20:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-18T22:23:34.000Z (over 3 years ago)
- Last Synced: 2024-08-02T12:46:59.280Z (3 months ago)
- Topics: vernetztewelten
- Language: Python
- Homepage:
- Size: 330 KB
- Stars: 2
- Watchers: 7
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - okfde/map.vernetztewelten.org - UMap-Deployment für VernetzteWelten.org (others)
README
# Culture Map . Eureka
## Local project setup
Start a local PostgreSQL Server with PostGIS installed.
Setup virtualenv and install dependencies:
```
python3 -m venv umap-env
source umap-env/bin/activate
pip install -r requirements.txt
```Copy `env.example` to `.env` and adjust values.
```
# Load configuration as environment variables
source .env
python manage.py migrate
python manage.py runserver
```## Local project setup with Docker
```
docker-compose -f docker-compose.dev.yml up
```## Deployment with Docker
Copy `env.example` to `.env` and adjust values.
```
docker-compose up --build
```The server will listen by default on port 8000.
## Admin interface
There's an admin interface at `/admin/`. You can create admin users like this:
```
python manage.py createsuperuser
```