https://github.com/i1d9/laundry-basket
https://github.com/i1d9/laundry-basket
django geodjango html-css-javascript postgis postgresql python
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/i1d9/laundry-basket
- Owner: i1d9
- Created: 2021-03-16T16:03:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-25T11:47:05.000Z (over 4 years ago)
- Last Synced: 2025-07-19T21:58:23.687Z (3 months ago)
- Topics: django, geodjango, html-css-javascript, postgis, postgresql, python
- Language: Python
- Homepage:
- Size: 5.09 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### Laundry Basket
This system offers On-demand Laundry services.It is built with pure django
### Windows Setup
https://docs.djangoproject.com/en/3.1/ref/contrib/gis/install/#windowshttps://get.enterprisedb.com/postgresql/postgresql-13.2-1-windows-x64.exe
http://download.osgeo.org/osgeo4w/osgeo4w-setup-x86_64.exe
```python
if os.name == 'nt':
import platform
OSGEO4W = r"C:\OSGeo4W"
if '64' in platform.architecture()[0]:
OSGEO4W += "64"
assert os.path.isdir(OSGEO4W), "Directory does not exist: " + OSGEO4W
os.environ['OSGEO4W_ROOT'] = OSGEO4W
os.environ['GDAL_DATA'] = OSGEO4W + r"\share\gdal"
os.environ['PROJ_LIB'] = OSGEO4W + r"\share\proj"
os.environ['PATH'] = OSGEO4W + r"\bin;" + os.environ['PATH']```
TODO: Containerize the django app