fardinanam / SyncInc

Web based software to manage and track projects and tasks of an organization.

Home Page:https://syncinc.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SyncInc.

Django Setup

  • install python virtual environment
      pip install virtualenv
  • create a virtual environment
      virtualenv ENV
  • activate the virtual environment
      ENV\Scripts\activate
  • install dependencies
      pip install --upgrade pip
      pip install -r requirements.txt
  • run the server
      python manage.py runserver

Django Setup using Anaconda

How to run the database migration

    python manage.py makemigrations accounts
    python manage.py makemigrations project_api
    python manage.py migrate accounts
    python manage.py migrate project_api
    python manage.py migrate

React Setup

  • go to the project directory
      cd Front-end/syncinc
  • install dependencies
      npm install
  • run the server
      npm start

About

Web based software to manage and track projects and tasks of an organization.

https://syncinc.vercel.app


Languages

Language:JavaScript 71.6%Language:Python 27.1%Language:CSS 0.7%Language:HTML 0.4%Language:Dockerfile 0.2%