All Projects → dooboolab → hackatalk-server

dooboolab / hackatalk-server

Licence: GPL-3.0 license
HackaTalk backend server

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

No longer maintained and is transferred to hackatalk server repo.

HackaTalk Server (Deprecated)

CircleCI codecov Build Status PRs Welcome

Specification

Setup Dev env

  • Create user in local mysql server account.
  • Give appropriate name to dev.env.
    DB_CONNECTOR=postgres
    DB_HOST=localhost
    DB_USER=postgres
    DB_DATABASE=hackatalk
    DB_PORT=5432
    DB_PASSWORD=dooboolab0!
    

Test Apis

Test Graphql Apis

Migration

yarn migrate

Running in local environment

  1. Create postgres database and give privileges (You can use mysql if you wish)

    CREATE DATABASE hackatalk;
    
    CREATE ROLE `postgres` WITH LOGIN NOSUPERUSER INHERIT CREATEDB NOCREATEROLE NOREPLICATION PASSWORD 'dooboolab0!';
    
    GRANT CONNECT ON DATABASE `hackatalk` TO `postgres`;
    
    GRANT ALL PRIVILEGES ON DATABASE `hackatalk` TO `postgres`;
    
  2. Start the server

    yarn start
    

    Above will just run the server with migration.

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