
This is the backend of the socialSync project developed during the Lap 2 of the LFA training - Avgerou Virtual cohort
The objective of this project is to build a platform for people living in the same area where they can share local events, look for help or discuss local issues
- clone this repo
git clone [email protected]:diegorramos84/socialSync-BE.git
- navigate to the app folder
cd diegorramos84/socialSync-BE
- install the packages
npm install
- in the app root folder, create and add the following to your .env file
# create file
touch .env
# add DB_URL link (postgress)
DB_URL: postgress://yourlink
# add PORT
PORT: 3000
# add BCRYPT_SALT_ROUNDS
BCRYPT_SALT_ROUNDS=10
- run the setup-db script to get your database ready
npm run setup-db
- start the server
npm run start
# or for development (auto server refreshes)
npm run dev
With the server running, you can know interact with the API using a platform like Postman
- Users Endpoint
# create user
POST http://localhost:3000/users/register
{
"username": "username",
"password": "password"
}
# login
POST http://localhost:3000/users/login
{
"username": "username",
"password": "password"
}
- Events Endpoint
# Get all events
GET http://localhost:3000/events
# Get one event by id
GET http://localhost:3000/events/:id
# Create new event
POST http://localhost:3000/events
{
"category_name": "Issues",
"event_name": "test",
"about": "testing this",
"place": "Brazil",
"category_name": "Other",
"event_date": "2023-05-04T11:36",
"token": "yourtoken"
}
# Search events
GET http://localhost:3000/events/search/:query
:query => word you are looking for
e.g.:
GET http://localhost:3000/events/search/issues
[
{
"id": 2,
"category_name": "Issues",
"event_name": "Second Entry",
"about": "An issue found on Tuesday",
"place": "London",
"even_date": "2023-05-11T10:56:40.997Z",
"userId": 1,
"creator": "admin"
}
]