Skip to content

Commit 4c62181

Browse files
authored
Merge pull request #50 from Aju100/source
Updated Content
2 parents 4a3ff49 + 2ae8536 commit 4c62181

File tree

5 files changed

+45
-15
lines changed

5 files changed

+45
-15
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ output/*
6464
!output/.gitkeep
6565
cache
6666
*.pid
67-
67+
.vscode

README.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,24 @@ site's theme is based on [Pure Pelican Theme](https://github.com/PurePelicanThem
2222

2323
This will clone the repository on to your system and clone the submodules inside it as well recursively. Additionally, the folder to which it will be cloned to is called `pynepal-website`.
2424

25-
* Set up a virtual env in that folder and activate it
25+
## You can choose any option
26+
27+
### Option 1
28+
* Set up a pipenv in that folder and activate it
29+
30+
$ cd <repo>
31+
$ pipenv shell
32+
### Option 2
33+
* Set up a virtual env in that folder and activate it
2634

2735
$ cd <repo>
2836
$ virtualenv venv
2937
$ source venv/bin/activate
3038

39+
3140
* Install the requirements using `pip` from inside the virtual environment
3241

33-
(venv)$ pip install -r requirements.txt
42+
(pythonnepal.github.io)$ pip install -r requirements.txt
3443

3544
* Start the server
3645

content/pages/pythoninnepal.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,21 @@ Date: 2017-09-09 00:00
88
- **Phone**: 9825349610
99
- **Website**: [binwary.com](http://www.binwary.com)
1010
- **Use**: We use python mostly for android application.
11-
- **Frameworks and Libraries**: Requests, Pygame, Django
11+
- **Frameworks and Libraries**:
12+
Requests, Pygame, Django
13+
14+
### Fusemachines Inc
15+
- **Email**: suman@fusemachine.com
16+
- **Location**: Kathmandu, Nepal
17+
- **Website**:[Fusemachines](http://fusemachines.com)
18+
- **Use**: AI projects
19+
- **Frameworks and Libraries**: Tensorflow, pytorch, skit-learn,etc.
20+
21+
### Kharpann Enterprises Pvt. Ltd
22+
- **Email**: support@kharpann.com
23+
- **Location**: Balkhu, Kathmandu
24+
- **Website**: [Kharpann](http://www.kharpann.com)
25+
- **Use**: Webcrawling, Machine Learning, Deep Learning, Web-app Development
1226

1327
### Leapfrog Technology
1428
- **Email**: kabirbaidhya@gmail.com
@@ -40,6 +54,13 @@ Date: 2017-09-09 00:00
4054
- **Website**: [ontreat.com](http://ontreat.com)
4155
- **Frameworks and Libraries**: Django, Tornado, Numpy, Pandas, Scrapy, SQLAlchemy, Fabric
4256

57+
### Sellercrowd
58+
- **Email**: soodip.kafle@gmail.com
59+
- **Location**: New York( working remotely from kathmandu)
60+
- **Website**:[Sellercrowd](http://sellercrowd.com)
61+
- **Use**: Web Development
62+
- **Framework and Libraries**: Django, React
63+
4364
### Zeftware Solutions Pvt. Ltd.
4465
- **Email**: info@zeftware.com
4566
- **Location**: Ram Laxman Marga, Biratnagar-01

pelicanconf.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@
4747
}
4848

4949
MENUITEMS = [
50-
("Companies", "http://0.0.0.0:8000/pages/pythoninnepal.html"),
51-
("Developers", "http://0.0.0.0:8000/pages/developers.html"),
52-
("Resources", "http://0.0.0.0:8000/pages/resources.html"),
53-
("Meetups", "http://0.0.0.0:8000/pages/meetups.html"),
54-
("Videos", "http://0.0.0.0:8000/pages/videos.html")
50+
("Companies", "https://0.0.0.0:8000/pages/pythoninnepal.html"),
51+
("Developers", "https://0.0.0.0:8000/pages/developers.html"),
52+
("Resources", "https://0.0.0.0:8000/pages/resources.html"),
53+
("Meetups", "https://0.0.0.0:8000/pages/meetups.html"),
54+
("Videos", "https://0.0.0.0:8000/pages/videos.html")
5555
]
5656

5757
#

publishconf.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
from pelicanconf import *
1212

1313
MENUITEMS = [
14-
("Companies", "http://pythonnepal.org/pages/pythoninnepal.html"),
15-
("Developers", "http://pythonnepal.org/pages/developers.html"),
16-
("Resources", "http://pythonnepal.org/pages/resources.html"),
17-
("Meetups", "http://pythonnepal.org/pages/meetups.html"),
18-
("Videos", "http://pythonnepal.org/pages/videos.html")
14+
("Companies", "https://pythonnepal.org/pages/pythoninnepal.html"),
15+
("Developers", "https://pythonnepal.org/pages/developers.html"),
16+
("Resources", "https://pythonnepal.org/pages/resources.html"),
17+
("Meetups", "https://pythonnepal.org/pages/meetups.html"),
18+
("Videos", "https://pythonnepal.org/pages/videos.html")
1919
]
2020

21-
SITEURL = 'http://pythonnepal.org'
21+
SITEURL = 'https://pythonnepal.org'
2222
RELATIVE_URLS = False
2323

2424
FEED_ALL_ATOM = 'feeds/all.atom.xml'

0 commit comments

Comments
 (0)