Simple Link saving app built using Django REST framework for backend and React for frontend.
To get started with this project, run:
git clone https://github.com/Abdullah-988/link-saving-app.git
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
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