Skip to content

arianpotter/IUT-software-engineering-project-implementation

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GDM (Game Devlompment Manager)

This is a sample implementation of our team's project for the Software Engineering I course at IUT.

Team Members

Installation

First, you need to have python (for backend server) and node.js (for frontend server)

then install requirements for pip and npm :

run this line in BackEnd folder:

pip install -r requirements.txt

run this line in FrontEnd/gdm_ui folder:

npm i

then you need to make a new database in PostgreSQL with the name 'gdm_db' and change the password for postgres user to '1234' you can do these by running these two query:

ALTER USER postgres PASSWORD '1234'
CREATE DATABASE gdm_db

Run

First, run this code on BackEnd/GDM_API to migrate to database and run server:

python manage.py migrate
python manage.py runserver

then we need to run server for frontend, for this purpose run this line in FronEnd/gdm_ui:

npm start

now everything is up and running, you can use site at 'http://localhost:3000'

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 54.3%
  • Python 43.2%
  • HTML 1.8%
  • CSS 0.7%