Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/falsehuman/project-citadel
Проект на Django/Vue
https://github.com/falsehuman/project-citadel
django django-project django-rest-framework js postgresql python3 vuejs
Last synced: about 5 hours ago
JSON representation
Проект на Django/Vue
- Host: GitHub
- URL: https://github.com/falsehuman/project-citadel
- Owner: FalseHuman
- Created: 2021-07-25T11:27:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-01T08:37:47.000Z (over 1 year ago)
- Last Synced: 2024-11-19T10:12:29.310Z (2 months ago)
- Topics: django, django-project, django-rest-framework, js, postgresql, python3, vuejs
- Language: JavaScript
- Homepage: https://crm.khazieff.cf
- Size: 8.03 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Project Citadel
## Setting up the installation
## Django
```bash
$ cd backend/citadel
$ pip install -r ./requirements.txt
```
### open settings.py and change the database to your own
```bash
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'citadel', #change
'USER': 'postgres', #change
'PASSWORD': '12345', #change
}
}
```
### launch Django
```bash
$ python manage.py migrate
$ python manage.py runserver 8002
```## Vue
```bash
$ cd frontend
$ npm install
$ npm run serve
```## DBMS PostgreSQL
Link how to install for [Windows](https://www.youtube.com/watch?v=yYJ74Sc7nw8)
Link how to install for [Linux](https://losst.ru/ustanovka-postgresql-ubuntu-16-04)