nevermind-backend
Frontend Repository
General Server Info
- OS: Ubuntu 18.04 LTS
- Cloud Instance: AWS EC2
- IPv4: 3.128.164.186
Setup
OS setup
- sudo apt-get update
- sudo apt-get install python3
- sudo apt-get install python3-pip
- sudo apt-get install build-essential libssl-dev libffi-dev python-dev libmysqlclient-dev
- sudo apt-get install mysql-server mysql-client
- sudo pip3 install virtualenv
- sudp pip3 install uwsgi
virtualenv setup after clone
(Run from project root directory)
- python3 -m virtualenv venv
- source venv/bin/activate
- pip3 install -r requirements.txt
- cd nevermind
- python3 manage.py makemigrations
- python3 manage.py migrate
- deactivate