Skip to content

mciray/congenial-dollop

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting Start

1. Setting Up .env Files

  • Go to directory backend.
  • Change .env-example to .env
SECRET_KEY = "YourSpeacialKey"

2. Setting up Docker & Migrations & Create Super User

  • You must the be directory backend
docker-compose build
  • Makemigrations from Docker
docker-compose run djapp python manage.py makemigrations
  • Migration from Docker
docker-compose run djapp python manage.py migrate
  • Create Super User
docker-compose run djapp python manage.py createsuperuser
  • Run the Docker
docker-compose up
  • Now you can go to 127.0.0.1:8000 to see it live. 🚀
  • Admin panel 127.0.0.1:8000/admin
  • You can create what u want!

3. Check the our API'S

  • You should use a tool like Postman or Insomnia for check out the endpoints
  • http://127.0.0.1:8000/swagger/ or http://127.0.0.1:8000/redoc/ can be check the api's

Working Space

  • All applications are inside the Apps folder.
  • The static folder was completely collectstatic.
  • Can be chill with our project 🚀

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 56.0%
  • JavaScript 35.3%
  • CSS 7.4%
  • Other 1.3%