Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andersinno/scorinator

For code your summer job
https://github.com/andersinno/scorinator

Last synced: about 16 hours ago
JSON representation

For code your summer job

Awesome Lists containing this project

README

        

# Workshop
## How to run Django
### Step 1: Make a virtual enviroment
Let's download 'venv'.
Open cmd-line in your's site's folder:
```
C:\my_project> python -m venv 'yours_venv_name'
```
### Step 2: Run virtual enviroment
For running venv write this command:
```
C:\my_project> python 'yours_venv_name'\Scripts\activate
```
Now your adress line shuld looks like:
```
('yours_venv_name')C:\my_project>
```
### Step 3: Installing Django
To install all requirement librarys:
```
pip install -r requirements.txt
```
### Step 4: Run server
For running server on your own machine:
```
python manage.py runserver
```
### Step last one:
Open the page 127.0.0.1:8000

# Work Log
### Step 2
Created the static html file
### Step 1
Created the wireframe on the board