All Projects → uclapi → uclapi

uclapi / uclapi

Licence: MIT license
An API for University College London, created for and by students!

Programming Languages

python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
Dockerfile
14818 projects
PLpgSQL
1095 projects
shell
77523 projects

Projects that are alternatives of or similar to uclapi

oracle-single-install
让Oracle数据库安装变得简单化,支持单实例和CDB容器快速安装,只需简单配置即可
Stars: ✭ 37 (-9.76%)
Mutual labels:  oracle
exodus
Migration tools for Tabular Data to Oracle JSON/Tabular Data
Stars: ✭ 19 (-53.66%)
Mutual labels:  oracle
dashd-rpc
Dash Client Library to connect to Dash Core (dashd) via RPC
Stars: ✭ 17 (-58.54%)
Mutual labels:  platform
appng
appNG is an open source, horizontally scalable application platform for developing and operating applications efficiently. It can be used to build an Application Platform as a Service (aPaaS).
Stars: ✭ 32 (-21.95%)
Mutual labels:  platform
weblogic honeypot
WebLogic Honeypot is a low interaction honeypot to detect CVE-2017-10271 in the Oracle WebLogic Server component of Oracle Fusion Middleware. This is a Remote Code Execution vulnerability.
Stars: ✭ 30 (-26.83%)
Mutual labels:  oracle
kratix
Kratix is a framework for building Platform-as-a-Product
Stars: ✭ 175 (+326.83%)
Mutual labels:  platform
DataX-src
DataX 是异构数据广泛使用的离线数据同步工具/平台,实现包括 MySQL、Oracle、SqlServer、Postgre、HDFS、Hive、ADS、HBase、OTS、ODPS 等各种异构数据源之间高效的数据同步功能。
Stars: ✭ 21 (-48.78%)
Mutual labels:  oracle
smart-contracts
On-chain system contracts and examples
Stars: ✭ 76 (+85.37%)
Mutual labels:  oracle
witnet-solidity-bridge
Witnet Bridge for EVM-compatible blockchains
Stars: ✭ 46 (+12.2%)
Mutual labels:  oracle
laravel-adminer
Adminer database management tool for your Laravel application.
Stars: ✭ 45 (+9.76%)
Mutual labels:  oracle
mybatis
Mybatis study
Stars: ✭ 66 (+60.98%)
Mutual labels:  oracle
platframe
Structured, scalable and modular frontend development platform.
Stars: ✭ 38 (-7.32%)
Mutual labels:  platform
method5
Remote execution for Oracle SQL, PL/SQL, and shell scripts, built entirely inside Oracle. Method5 lets you easily run commands quickly and securely on hundreds of databases.
Stars: ✭ 19 (-53.66%)
Mutual labels:  oracle
dashcore-node
Full node with extended capabilities using Dashcore and Dash Core (dashd)
Stars: ✭ 30 (-26.83%)
Mutual labels:  platform
nosql-go-sdk
SDK for Go for Oracle NoSQL Database
Stars: ✭ 26 (-36.59%)
Mutual labels:  oracle
metadata
oracle,mysql,sql server 元数据管理表生成
Stars: ✭ 45 (+9.76%)
Mutual labels:  oracle
ares
Completely decentralized oracle protocol
Stars: ✭ 51 (+24.39%)
Mutual labels:  oracle
aco-oracle java
Puppet module to install Oracle Java on Linux systems
Stars: ✭ 13 (-68.29%)
Mutual labels:  oracle
Oracle.jl
Oracle Database driver for the Julia language.
Stars: ✭ 32 (-21.95%)
Mutual labels:  oracle
vagrant
Vagrant Builds
Stars: ✭ 154 (+275.61%)
Mutual labels:  oracle

UCL API build staging codecov

What is the UCL API?

UCL API started as a student-built platform for student developers to improve the student experience of everyone at UCL. We now also have our own end-user facing applications in addition to this, such as UCL Assistant, our rival app to UCL GO.

Our Goal

Create a ridiculously simple, documentation first, and comprehensive API around UCL's digital services and establish an ecosystem of third party UCL apps and services that use the API. Find out more at our website or if you feel brave try staging.

Interested in helping build it?

Read on more to find out how to setup and build the API. From here you can start writing your own changes and submitting them. See our Contribution Guide to learn more about how you can contribute.

Setup in 10 Minutes

For this setup to work you need to have docker, git, python (3.7), and node + npm installed. If you would like the old setup guide (without docker) that can be found here, it also contains some advanced information for maintainers. This guide has been tested to work on Windows (we recommend PowerShell Core), Linux, and MacOS.

Clone uclapi to a local directory

git clone https://github.com/uclapi/uclapi.git
cd uclapi

Then start the development docker compose file

docker-compose -f docker-compose-dev.yml up

In the meantime you can create your Python virtual environment (you may need to write python instead of python3)

cd backend/uclapi
cp .env.docker.example .env
python3 -m venv ./venv

# For unix:
source ./venv/bin/activate
# For windows:
./venv/Scripts/activate

# Then
pip install -r requirements.txt

And setup the frontned

cd frontend
npm install
npm start

Give it a go!

If those commands work you should be able to navigate to http://localhost:8000/dashboard in your browser, which will let you log in via Fake Shibboleth running on http://localhost:8001. If so, then you're up and running!

Testing

We're an amazing project, so obviously we have tests . Make sure you have the requirements installed in your virtual environment (and you have activated it) , cd into backend/uclapi and then run :
python manage.py test --settings=uclapi.settings_mocked

Linting

We have a pre-commit hook set up that runs eslint on all staged JS files, stylelint on all staged scss files, and autopep8 & flake8 on all staged Python files. This automatically fixes style issues and stops the commit if there are any obvious problems (e.g. failure to define variable).

Documentation

As well as the user-facing documentation we also now ship our own internal Documentation which aims to help developers contribute to our code. To make it simply run make html while in the backend directory. You can then navigate to the build directory and open up index.html in your favourite browser to view the documentation. It can also be built in pdf, latex and a few other formats.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].