Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

neverworkalone/notecloud

Repository files navigation

notecloud

API CircleCI codecov

Notecloud a.k.a. CheckCheck son of Workcloud

Create database before setup

$ psql
postgres=# create user <DB_USER>;
postgres=# alter user <DB_USER> with password '<DB_PASSWORD>';
postgres=# create database <DB_NAME> owner <DB_USER>;

Getting started with notecloud

$ git clone https://github.com/neverworkalone/notecloud.git
$ pip install -r requirements.txt
$ python manage.py migrate
$ ./serve.sh
$ cd frontend/wc
$ npm install
$ npm run serve

unittest

$ tox  # You can use tox to generate coverage with unittest or just below script
$ ./runtest.sh  # This has more options for convenience. check more with ./runtest.sh --help

Swagger

http://localhost:8000/redoc/
http://localhost:8000/swagger/
  • Available on localserver