Skip to content

Simple Link saving full-stack app built using Django REST framework for backend and React for frontend

License

Notifications You must be signed in to change notification settings

Abdullah-988/link-saving-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔗 Link Saving App

Simple Link saving app built using Django REST framework for backend and React for frontend.

Getting started

To get started with this project, run:

git clone https://github.com/Abdullah-988/link-saving-app.git

Backend

Setup .env file

SECRET_KEY=
DB_NAME=
DB_USER=
DB_PASSOWRD=
DB_HOST=
DB_PORT=

then run:

python manage.py makemigrations

and

python manage.py migrate

then

python manage.py runserver

Frontend

Setup .env file,

in .env file add your backend api url (use http://localhost:8000 as a start):

VITE_BACKEND_API="http://localhost:8000"

then run:

npm install

and

npm run dev