https://github.com/roomacarthur/dj-temp-2025
https://github.com/roomacarthur/dj-temp-2025
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/roomacarthur/dj-temp-2025
- Owner: roomacarthur
- Created: 2025-03-07T09:20:49.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-07T16:26:58.000Z (3 months ago)
- Last Synced: 2025-03-07T17:30:23.590Z (3 months ago)
- Language: JavaScript
- Size: 386 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dj-temp-2025
Pre built django template, with the following already installed/setup.
### Virtual environments
As always it is crucial to have a virtual environment setup for development.
`venv/`
`.venv/`Both of the above are ignored in the `.gitignore` file.
To create a virtual environment, run the following command in the terminal.
`python -m venv venv`and to activate the virtual environment, run the following command in the terminal.
`source venv/bin/activate # on mac``source venv/scripts/activate # on windows`