Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mstgnz/wms
Worksite Management System With Python Django
https://github.com/mstgnz/wms
django docker mysql python3
Last synced: 15 days ago
JSON representation
Worksite Management System With Python Django
- Host: GitHub
- URL: https://github.com/mstgnz/wms
- Owner: mstgnz
- License: apache-2.0
- Created: 2019-09-21T14:51:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-15T21:02:27.000Z (8 months ago)
- Last Synced: 2024-06-15T22:20:20.975Z (8 months ago)
- Topics: django, docker, mysql, python3
- Language: HTML
- Homepage:
- Size: 775 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Worksite-Django
Worksite Management System With Django## via docker
first step, run the docker service
```
docker-compose -f docker-compose.yml up -d
```open terminal and list docker services. Enter the container of django-app and run the following commands.
```
python manage.py makemigrations
python manage.py migrate
```if it is the first installation;
Create a superuser with the `python manage.py createsuperuser`For each model added later, you have to do the migrate process in the same way.
That's it. Go to url
`http://localhost:8000`
Note : The project is not yet completed and will be completed when I have free time.