This is the backend API repository for Study Portal intended to be used by Study Portal React Web App and the mobile app.
- Install PostgreSQL service.
- Obtain a credentials.json from the author/generate one yourself and place it in
studyportal/drive
. - Create a
.env
file from.env.sample
and change the fields as appropriate.
These are required to get the auth running for development setup.
- Setup Arceus and Falcon locally or get a remote instance for development/testing.
- Register study as an app in Arceus and make changes to
.env
.
If you want to skip these steps you can just add a cookie in the browser with the following description:
key: token,
value: eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VybmFtZSI6ImRhcmtyaWRlciIsImVtYWlsIjoiZGFya3JpZGVyMjUxMDk5QGdtYWlsLmNvbSJ9.xBwh-abNBZTlxWDRjEs33DN2AjXlf21JkSwlez6dvGM
Ensure that you have installed Docker (with Docker Compose ) and that the Docker daemon is running.
- Clone the repository
git clone [email protected]:sdslabs/studyportal-nexus.git
- Setup and start docker containers
docker-compose -f docker-compose-dev.yml up
After executing docker-compose -f docker-compose-dev.yml up
, you will be running:
- A Django API server
- PostgreSQL instance(serves as the application database)
- Elasticsearch instance
- Redis server
Once everything has initialized, with docker-compose
still running in the background, load the sample data. You will need to install PostgreSQL client tools to perform this step. On Debian, the package is called postgresql-client-common
.
./ingest.sh
You are now ready to start sending the API server requests. Hit the API with a request to make sure it is working:
curl localhost:8005/api/v1/departments
If the API server container failed to start, there's a good chance that Elasticsearch failed to start on your machine. Ensure that you have allocated enough memory to Docker applications, otherwise the container will instantly exit with an error. Also, if the logs mention "insufficient max map count", increase the number of open files allowed on your system. For most Linux machines, you can fix this by adding the following line to /etc/sysctl.conf
:
vm.max_map_count = 262144
To make this setting take effect, run:
sudo sysctl -p
You can setup the local dev in a virtualenv:
- Create a virtualenv using your preferred method.
- Using virtualenv
virtualenv -p python3 venv
source venv/bin/activate
- Using virtualenvwrapper
mkvirtualenv studyportal
workon studyportal
- Install packages in virtual environment.
pip install -r requirements.txt
- Edit the
.env
file.
DATABASE_HOST=localhost
ELASTICSEARCH_HOST=localhost
REDIS_HOST=localhost
- Initialize the database and create elasticsearch index
python manage.py makemigrations
python manage.py migrate
python manage.py search_index --rebuild -f
- Create Django admin user
python manage.py createsuperuser
- Run development server
python manage.py runserver 0.0.0.0:8005