All Projects → Cloud-CV → CloudCV

Cloud-CV / CloudCV

Licence: GPL-3.0 license
☁️ CloudCV Website

Programming Languages

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

Projects that are alternatives of or similar to CloudCV

network-pipeline
Network traffic data pipeline for real-time predictions and building datasets for deep neural networks
Stars: ✭ 36 (-32.08%)
Mutual labels:  django-rest-framework, react-redux
Django React Boilerplate
DIY Django + React Boilerplate for starting your SaaS
Stars: ✭ 385 (+626.42%)
Mutual labels:  django-rest-framework, react-redux
Sarenka
OSINT tool - gets data from services like shodan, censys etc. in one app
Stars: ✭ 120 (+126.42%)
Mutual labels:  django-rest-framework, react-redux
studyportal-nexus
Backend API for studyportal
Stars: ✭ 24 (-54.72%)
Mutual labels:  django-rest-framework
react-redux
Project using react+redux+react-router
Stars: ✭ 15 (-71.7%)
Mutual labels:  react-redux
Footprint
Bluetooth Beacon 을 활용한 장소 기반 추억 기록 및 공유 서비스
Stars: ✭ 24 (-54.72%)
Mutual labels:  django-rest-framework
django-learning-pathway
(Currently in development) Learning pathways for learning Django.
Stars: ✭ 35 (-33.96%)
Mutual labels:  django-rest-framework
TA-BOT
An open source Telegram bot which can be used as a teaching assistant bot if you are trying to find an easy and secure way to communicate with your students.
Stars: ✭ 20 (-62.26%)
Mutual labels:  django-rest-framework
giphygram
🔎 Experimental React application for searching GIF images on GIPHY
Stars: ✭ 23 (-56.6%)
Mutual labels:  react-redux
vstutils
Small framework for easy generates web-applications (SPA or Single Page Application).
Stars: ✭ 39 (-26.42%)
Mutual labels:  django-rest-framework
drftest
drftest is a minimal testing library that aims to facilitate writing tests for django rest framework views. It also [optionally] generates good looking API documentations based on tests it runs.
Stars: ✭ 26 (-50.94%)
Mutual labels:  django-rest-framework
django-rest-witchcraft
Django REST Framework integration with SQLAlchemy
Stars: ✭ 38 (-28.3%)
Mutual labels:  django-rest-framework
react-redux-todolist
react-redux-todolist example
Stars: ✭ 35 (-33.96%)
Mutual labels:  react-redux
formica
A discord bot that collects and analyzes form data
Stars: ✭ 20 (-62.26%)
Mutual labels:  django-rest-framework
laravel-react-boilerplate
Laravel React Boilerplate with Ant Design, Route-Level Code Splitting, Redux, Sanctum Auth
Stars: ✭ 49 (-7.55%)
Mutual labels:  react-redux
drf-jwt-example
Code samples of the tutorial "How to Use JWT Authentication with Django REST Framework"
Stars: ✭ 31 (-41.51%)
Mutual labels:  django-rest-framework
drf-registration
Simple user registration package based on Django Rest Framework. DRF Registration - The easy way to generate registration RESTful APIs
Stars: ✭ 32 (-39.62%)
Mutual labels:  django-rest-framework
ujson drf
JSON Renderer and Parser for Django Rest Framework using the ultra fast json (in C).
Stars: ✭ 14 (-73.58%)
Mutual labels:  django-rest-framework
react-tutorial
A react-tutorial
Stars: ✭ 99 (+86.79%)
Mutual labels:  django-rest-framework
bk-user
蓝鲸用户管理是蓝鲸智云提供的企业组织架构和用户管理解决方案,为企业统一登录提供认证源服务。
Stars: ✭ 31 (-41.51%)
Mutual labels:  django-rest-framework

CloudCV

Join the chat at https://gitter.im/Cloud-CV/Lobby Build Status Code Health Coverage Status

How to Setup

  1. Install git, postgresql version >= 9.4, virtualenv and Node.js version >= 6 in your computer, if you don't have it already. Please check that the python version you are using for the project is 2.7.x. If you are having trouble with postgresql on Windows check this link postgresqlhelp.
  2. Get the source code on your machine via git
    git clone [email protected]:Cloud-CV/CloudCV.git cloudcv
    
    If you have not added ssh keys to your GitHub account then get the source code by running the following command
    git clone https://github.com/Cloud-CV/CloudCV.git cloudcv
    
  3. Create a python virtual environment and install python dependencies.
    cd cloudcv
    virtualenv venv
    source venv/bin/activate  # run this command everytime before working on project
    pip install -r requirements/dev.txt
    
  4. Rename settings/dev/settings.sample.py as settings/dev/settings.py and change credentials in settings/dev/settings.py
    cp settings/dev/settings.sample.py settings/dev/settings.py
    
    Use your postgres username and password for fields USER and PASSWORD in settings/dev/settings.py file.
  5. Create an empty postgres database and run database migration.
    sudo -i -u (username)
    createdb cloudcv
    python manage.py migrate --settings=settings.dev.settings
    
  6. That's it. Now you can run development server at http://127.0.0.1:8000 (for serving backend)
    python manage.py runserver --settings=settings.dev.settings
    
  7. Open a new terminal window with node(>=6) and ruby(gem) install on your machine and type
    cd frontend
    sudo npm install -g yarn
    yarn install
    
    If you running npm install behind a proxy server, use
    npm config set proxy http://proxy:port
    
  8. Now to connect to dev server at http://127.0.0.1:6003 (for serving frontend)
    yarn run dev
    

How to Setup on Windows

  1. Install git, postgresql; tested with postgresql installer by bigsql version >= 9.4, and Node.js version >= 6 in your computer & python 2.7.x , if you don't have it already.
  2. Get the source code on your machine via git
    git clone [email protected]:Cloud-CV/CloudCV.git cloudcv
    
    If you have not added ssh keys to your GitHub account then get the source code by running the following command
    git clone https://github.com/Cloud-CV/CloudCV.git cloudcv
    
  3. Open a command prompt and Install python dependencies.
    cd cloudcv
    pip install -r requirements\dev.txt
    
  4. Rename settings/dev/settings.sample.py as settings/dev/settings.py and change credentials in settings/dev/settings.py
    copy settings\dev\settings.sample.py settings\dev\settings.py
    
    Use your postgres username and password for fields USER and PASSWORD in settings/dev/settings.py file.
  5. Create an empty postgres database and run database migration.
    Start Postgresql server
    Open psql prompt
    createdb cloudcv
    In the command prompt,
    python manage.py migrate --settings=settings.dev.settings
    
  6. That's it. Now you can run development server at http://127.0.0.1:8000 (for serving backend),
    python manage.py runserver --settings=settings.dev.settings
    
  7. Open a new terminal window with node(>=6) and ruby(gem) install on your machine and type
    cd frontend
    npm install -g yarn
    yarn install
    
    If you running npm install behind a proxy server, use
    npm config set proxy http://proxy:port
    
  8. Now to connect to dev server at http://127.0.0.1:6003 (for serving frontend)
    yarn run dev
    

Contribution guidelines

If you are interested in contributing to CloudCV, follow our contribution guidelines.

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].