Skip to content

Virtual classroom for teaching Python 3 programming language

License

Notifications You must be signed in to change notification settings

somnoynadno/python-collab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Collab

Web service for teaching Python 3 programming language.

Deployment

Using Docker

Application is ready-to-run in Docker container:

  1. Set convenient port-forwarding and other configuration in docker-compose.yml

  2. Set your own IP address or domain name in frontend configuration file

  3. Build and start containers with $ docker-compose up --build -d command

Manual

To manually start web server, run following commands:

 $ cd backend
 # use go v1.22 or higher
 $ go mod tidy
 $ go build .
 # server will use port 8000 by default
 $ ./backend

For frontend application:

 $ cd frontend
 # use npm v8.19.0 and node v16
 $ npm i
 $ npm run start

Copyright

This source code is distributed under the MIT License.