https://github.com/bayars/cloud-management-panel
The panel made with Django. Manages files and directories in remote servers.
https://github.com/bayars/cloud-management-panel
cloudmanagementplatform django management-system postgresql python37
Last synced: 7 months ago
JSON representation
The panel made with Django. Manages files and directories in remote servers.
- Host: GitHub
- URL: https://github.com/bayars/cloud-management-panel
- Owner: bayars
- License: gpl-3.0
- Created: 2019-09-28T16:57:27.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-12-30T13:55:42.000Z (about 2 years ago)
- Last Synced: 2025-03-11T19:45:09.737Z (about 1 year ago)
- Topics: cloudmanagementplatform, django, management-system, postgresql, python37
- Language: Python
- Homepage:
- Size: 23.5 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cloud Management Panel

The project manages files and directories to remote servers. The main pages wants register to your server information. Afterthat the new page open and you can see files and directories.
You can delete, upload, create, download the all matters. The system on development mode right now. So you're just using for development.
I used PostgreSQL 11 you should use upper versions of PostgreSQL.
You need to install the python3-dev package in debian or Redhat systems.
```shell
sudo apt install python3-dev
sudo yum install python3-dev
```
Virtualenv should be install in system.
```shell
virtualenv cloud
. cloud/bin/activate
pip install -r requirements.txt
```
PostgreSQL wants to access to cloud database. So, you need create user, password and database for clouds.
```shell
create user TEST with password 'TEST'
create database cloudpanel owner TEST;
```
Tables need to create in PostgreSQL. You should run this command.
```shell
python manage.py migrate
```
Super user purpose access to admin page. That wants to information of admin user.
```shell
python manage.py createsuperuser
```
Run the web application;
```shell
python manage.py runserver
```
