Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# MeetEng
Prospective RPI students and freshmen meeting seniors of the same major.
## Running
To start Django webserver in development mode:
```
cd meetEng
python3 manage.py runserver
```
The frontend is exposed on port 8000.
## Deployment
DJANGO SERVER IS NOT PRODUCTION SECURE
To deploy in production mode:
In settings.py turn off DEBUG MODE
```
DEBUG = False
```
The deployed port is currently `80000` for both the frontend. Database and Backend is not visible to the outside.