## FrontEnd Settings
$ git clone https://github.com/SeonminKim1/SMOPS-FE
$ cd SMOPS-FE/
- Install vscode extensions : Live Server
- Run Live Server
## Backend Settings
$ git clone https://github.com/SeonminKim1/SMOPS-BE
$ cd SMOPS-BE/
$ pip install -r requirements.txt
- Make 'my_settings.py' from 'ex_my_settings.py
$ python manage.py makemigrations
$ python manage.py migrations
$ python manage.py runserver
# if you apply code convention by black & isort
$ python auto_cleancode.py
ββsmops
βββ smops // project
β βββ urls.py
β βββ settings.py // setting
β βββ ...
βββ art // app
β βββ models.py // DB Model - User
β βββ views.py // View Functions
β βββ serializers.py // Serializers
β βββ ...
βββ mygallery // app
β βββ models.py // DB Model - Restaurant, Category
β βββ views.py // View Functions
β βββ serializers.py // Serializers
β βββ ...
βββ ai // app + ai GAN
β βββ service/ // AI Style Transfer
β βββ models.py // DB Model - Star
β βββ views.py // View Functions
β βββ upload.py // AWS S3 Upload Code
β βββ serializers.py // Serializers
β βββ ...
βββ user // app
β βββ models.py // DB Model - Diary
β βββ views.py // View Functions
β βββ serializers.py // Serializers
β βββ ...
βββ media
β βββ test_img/ // test img
β
βββ **manage.py** // λ©μΈ
βββ requirements.txt