https://github.com/deviquee/careers-flux-website
CareersFlux - Career Consulting
https://github.com/deviquee/careers-flux-website
cloudinary css django html javascript jinja2 python restful-api
Last synced: 10 months ago
JSON representation
CareersFlux - Career Consulting
- Host: GitHub
- URL: https://github.com/deviquee/careers-flux-website
- Owner: deviquee
- Created: 2024-06-07T20:08:03.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-11T04:10:14.000Z (over 1 year ago)
- Last Synced: 2025-05-25T07:12:16.396Z (about 1 year ago)
- Topics: cloudinary, css, django, html, javascript, jinja2, python, restful-api
- Language: HTML
- Homepage:
- Size: 9.61 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CareersFlux - Career Consulting
CareersFlux is a project using Django Framework of our group in the Information System Security subject
## Installation
1. Clone the project:
```bash
git clone https://github.com/HiepThanhTran/CareersFlux-Website.git
```
2. Create Virtual Environment:
```bash
python -m venv venv
```
3. Activate the environment
```bash
source venv/bin/activate # On Windows: venv\Scripts\activate
```
4. Install dependencies from requirements.txt
```bash
pip install -r requirements.txt
```
5. Makemigration and migrate database:
```bash
python manage.py makemigrations
python manage.py migrate
```
*Note*: Make sure you connect to your database configured in the settings.py file:
```bash
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.',
'NAME': '',
'USER': '',
'PASSWORD': 'DATABASE_PASSWORD>',
'HOST': '',
'PORT': ''
}
}
```
*Or you can use sqlite3*:
```bash
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
},
}
```
## Run locally
- After that just run project in localhost with the following command in terminal:
HTTP Protocol
```bash
python manage.py runserver
```
HTTPS Protocol (For Login/Signup with Facebook)
```bash
python manage.py runsslserver
```