Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ashishbhoi/group-project-12
Django Group Project For Data Base and Information System Lab
https://github.com/ashishbhoi/group-project-12
django python-3
Last synced: about 1 month ago
JSON representation
Django Group Project For Data Base and Information System Lab
- Host: GitHub
- URL: https://github.com/ashishbhoi/group-project-12
- Owner: ashishbhoi
- License: gpl-3.0
- Created: 2019-10-27T19:43:59.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T22:38:07.000Z (over 2 years ago)
- Last Synced: 2024-10-14T02:26:50.837Z (2 months ago)
- Topics: django, python-3
- Language: Python
- Size: 56.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# group-project-12 #
Django Group Project For Data Base and Information System Lab
## Step To Configure Project ##
### Create a new python virtual env for your project ###
virtualenv venv### Activate python virtual env for your project ###
source venv/bin/activate### Install all required dependency ###
pip install -r requirements.txt## How to run The application ##
### Make Migrations ###
python manage.py makemigrations### Migrate Relations To Database ###
python manage.py migrate### Download node modules
cd college/static
npm install
cd ../.. # to go to home directory### Collect Static ###
python manage.py collectstatic### Run Live Server Locally ###
python manage.py runserver