Teamwork is an internal social network for employees of an organization. The goal of this application is to facilitate more interaction between colleagues and promote team bonding
- Nodejs
- PostgreSQL
- Employees can
- Sign in
- Create articles and GIF posts
- View articles and GIF posts
- Edit articles
- Comment on articles
- Delete articles and GIF posts
- Admin can
- Create new employee accounts
To run teamwork locally simply follow the instructions below:
You need to have or install the following:
- Git bash
- Npm
- Postman
-
clone repo
git clone https://github.com/fegoworks/teamwork-backend.git -
navigate to api folder
-
run installation
npm install -
create a
.envfile with this templateDB_URL='Your postgres database url' TEST_URL='Your postgres test database url' SECRET = boomshakalaka CLOUD_NAME = 'Your cloudinary name' CLOUDINARY_API_KEY = 'cloudinary API key' CLOUDINARY_API_SECRET = 'cloudinary API secret' -
start app
npm run dev-start -
you can now make requests using postman to
localhost:4545/api/v1/
To run tests simply run the following command in your git bash or command line
npm run test
Heroku: teamwork-fg Documentation: Teamwork-Docs
| Endpoints | Functionality |
|---|---|
| POST /auth/create-user | Create new user account |
| POST /auth/signin | Login a user |
| POST /articles | Create an article |
| POST /gifs | Create a GIF post |
| PATCH /articles/:articleId | Edit an article |
| DELETE /articles/:articleId | Delete a specific article |
| DELETE /gifs/:gifId | Delete a specific GIF post |
| POST /articles/:articleId/comments | Comment on a specific article |
| POST /gifs/:gifId/comments | Comment on a specific Gif post |
| GET /feed | View all articles and GIF posts |
| GET /articles/:articleId | View a specific article |
| GET /gifs/:gifId | View a specific GIF post |
| GET /category/:categoryName | View articles by category |
You can view the user interface here Teamwork
Edafe Oghenefego @realFego