https://github.com/hectorpulido/generic-porfolio
This is a simple portfolio/content manager made with django.
https://github.com/hectorpulido/generic-porfolio
backend django
Last synced: about 1 year ago
JSON representation
This is a simple portfolio/content manager made with django.
- Host: GitHub
- URL: https://github.com/hectorpulido/generic-porfolio
- Owner: HectorPulido
- License: mit
- Created: 2022-08-13T03:28:17.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-09-20T05:43:02.000Z (almost 3 years ago)
- Last Synced: 2025-06-03T07:59:15.586Z (about 1 year ago)
- Topics: backend, django
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Generic portfolio
## Setup Django
1. Configure your heroku project, save the name, you will need the Heroku Postgresql addon
2. Build the docker development and run it to make sure everything is ok
```
docker build -t web:latest .
docker run -d --name -e "PORT=8765" -e "DEBUG=0" -p 8007:8765 web:latest
```
3. You can deactivate like this
```
docker stop
docker rm
```
4. You can upload your project with this commands
```
docker run -d --name -e "PORT=8765" -e "DEBUG=0" -p 8007:8765 web:latest
heroku container:login
heroku container:push web -a
heroku container:release web -a
```
5. Create your user with
```
heroku run python manage.py createsuperuser -a
```
6. Enter to your proyect from this url
```
http://.herokuapp.com/admin
```