SchoolManagementSystem DEMO Link

- To clone the project:
$ git clone https://github.com/Luka033/SchoolManagementSystem.git
- Then move to the project directory:
$ cd SchoolManagementSystem
- Start the pip environment:
$ pipenv shell
- Install all required modules listed in requirements.txt:
$ pipenv install -r requirements.txt
- Check if we have any error before run the server:
$ ./manage.py check
- Finally, we run our server:
$ ./manage.py runserver
Note: The default port is 8000, to run server at different port (for example, we pick port 3000), run:
$ ./manage.py runserver 3000
