TODO -- write this
To build backend application follow next steps:
- Add envirement file to:
app/.env
export DEBUG = {} export DB_NAME = {} export DB_USER = {} export DB_USER_PASSWORD = {} export DB_HOST = {} export DB_DB_PORT = {}
- Add password for db file to:
db/password.txt
- Up docker compose stack:
docker compose up -d
- Make migarations for db in django aplication container:
python manage.py migrate
- Collect static filles:
python manage.py collectstatic
Pudge Cuber Club System - software for managing a network of computer clubs
Copyright (C) 2024 Dionisiu Brovka
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.