This is public mirror to the private project "Opengisproj" created on GitHub under the user @thisisayush forked by @vipulgupta2048 with the intention of collaboration and development on the project "Opengisproj". The mirror is created only for referencial purposes and is strictly not meant for redistributing commecially and neither to be procured for personal or commercial use. Aiming to only represent the work done by the collaborators. The development and latest commits for Opengisproj are here. (Private)
The work done by the collaborators is to be considered only as v1. This mirror will not be updated further. Licensed under GNU General Public License (GPL) v3 or later. Check COPYING and LICENSE for the same. For any queries: mailto:vipulgupta2048@gmail.com
GIS Open Source Project This project uses Postgresql. Install postgresql server and pgadmin4 for easy management of database during development phase
python -m venv VENV_NAME
git clone https://github.com/YOUR_GITHUB_FORK_URL
Windows:
VENV_NAME/Scripts/activate
Linux
source VENV_NAME/bin/activate
Navigate to cloned_repo/
pip install -r requirements.txt
Create a .env file in project_dir/cloned_repo/opengisproj/opengisproj with following data:
DEBUG=true
DATABASE_NAME=your_database_name
DATABASE_USER=your_database_user
DATABASE_PASS=your_database_pass
DATABASE_HOST=your_database_host
DATABASE_PORT=your_database_port
Navigate to cloned_repo/opengisproj/
python manage.py migrate
Navigate to clones_repo/opengisproj/
python manage.py createsuperuser
Fill up the required info
python manage.py runserver
Check the installation at http://127.0.0.1:8000/