Conexperto, aims to be a social network to learn and grow. We believe that people learn best from other people, it was like that for a long time and this is how we actually learn from our environment.
This repository houses the code for all operation of the Admin's in Conexperto.
In order to run this container you'll need docker installed.
Clone the repository and move to the project directory.
git clone git@gitlab.com:conexperto/admin.git
Run build container.
docker-compose build
Run start container admin.
docker-compose up admin
Initialize migration of database.
docker-compose exec api db upgrade
then visit http://localhost:3001/ and http://localhost:5000/api/v1 for Restful API
docker-compose exec api seed <seed> <up|down>
e.g.
docker-compose exec api seed user up
See folder src/seeds
for more options.
- Discuss Conexperto Server on Github Discussions
To contribute, please review the issues in the projects section projects
In order to maintain consistency and readability of commit messages, this convention is used ConventionalCommits
To maintain a stable & quality code, the following hooks have been used with pre-commit.
To install the husky and use your hook configuration.
npm run prepare
or
yarn prepare