You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -138,6 +137,49 @@ The project is coded using a simple and intuitive structure presented bellow:
138
137
139
138
<br />
140
139
140
+
## Recompile CSS
141
+
142
+
To recompile SCSS files, follow this setup:
143
+
144
+
<br />
145
+
146
+
**Step #1** - Install tools
147
+
148
+
-[NodeJS](https://nodejs.org/en/) 12.x or higher
149
+
-[Gulp](https://gulpjs.com/) - globally
150
+
-`npm install -g gulp-cli`
151
+
-[Yarn](https://yarnpkg.com/) (optional)
152
+
153
+
<br />
154
+
155
+
**Step #2** - Change the working directory to `assets` folder
156
+
157
+
```bash
158
+
$ cd apps/static/assets
159
+
```
160
+
161
+
<br />
162
+
163
+
**Step #3** - Install modules (this will create a classic `node_modules` directory)
164
+
165
+
```bash
166
+
$ npm install
167
+
// OR
168
+
$ yarn
169
+
```
170
+
171
+
<br />
172
+
173
+
**Step #4** - Edit & Recompile SCSS files
174
+
175
+
```bash
176
+
$ gulp scss
177
+
```
178
+
179
+
The generated file is saved in `static/assets/css` directory.
180
+
181
+
<br />
182
+
141
183
## Deployment
142
184
143
185
The app is provided with a basic configuration to be executed in [Docker](https://www.docker.com/), [Gunicorn](https://gunicorn.org/), and [Waitress](https://docs.pylonsproject.org/projects/waitress/en/stable/).
0 commit comments